home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / dvx-gcc.mak < prev    next >
Text File  |  1997-08-09  |  196KB  |  5,592 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # Makefile fragment containing the current revision identification.
  16.  
  17. # Define the name of this makefile.
  18. VERSION_MAK=version.mak
  19.  
  20. # Major and minor version numbers.
  21. # MINOR0 is different from MINOR only if MINOR is a single digit.
  22. GS_VERSION_MAJOR=5
  23. GS_VERSION_MINOR=03
  24. GS_VERSION_MINOR0=03
  25. # Revision date: year x 10000 + month x 100 + day.
  26. GS_REVISIONDATE=19970808
  27.  
  28. # Derived values
  29. GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
  30. GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR)
  31. GS_REVISION=$(GS_VERSION)
  32. #    Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  33. # This file is part of Aladdin Ghostscript.
  34. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  35. # or distributor accepts any responsibility for the consequences of using it,
  36. # or for whether it serves any particular purpose or works at all, unless he
  37. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  38. # License (the "License") for full details.
  39. # Every copy of Aladdin Ghostscript must include a copy of the License,
  40. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  41. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  42. # under certain conditions described in the License.  Among other things, the
  43. # License requires that the copyright notice and this notice be preserved on
  44. # all copies.
  45.  
  46. # makefile for DesqView/X/gcc/X11 configuration.
  47. # Note: this makefile assumes you are using gcc in ANSI mode.
  48.  
  49. #****************************************************************#
  50. #   If you want to change options, DO NOT edit dvx-gcc.mak       #
  51. #   or makefile.  Edit dgc-head.mak and run the tar_cat script.  #
  52. #****************************************************************#
  53.  
  54. # ------------------------------- Options ------------------------------- #
  55.  
  56. ####### The following are the only parts of the file you should need to edit.
  57.  
  58. # ------ Generic options ------ #
  59.  
  60. # Define the installation commands and target directories for
  61. # executables and files.  The commands are only relevant to `make install';
  62. # the directories also define the default search path for the
  63. # initialization files (gs_*.ps) and the fonts.
  64.  
  65. INSTALL = install -c
  66. INSTALL_PROGRAM = $(INSTALL) -m 755
  67. INSTALL_DATA = $(INSTALL) -m 644
  68.  
  69. prefix = c:/bin
  70. bindir = c:/bin
  71. gsdatadir = c:/gs
  72. gsfontdir = c:/gsfonts
  73.  
  74. docdir=$(gsdatadir)/doc
  75. exdir=$(gsdatadir)/examples
  76. GS_DOCDIR=$(docdir)
  77.  
  78. # Define the default directory/ies for the runtime
  79. # initialization and font files.  Separate multiple directories with a ;.
  80.  
  81. GS_LIB_DEFAULT="$(gsdatadir);$(gsfontdir)"
  82.  
  83. # Define whether or not searching for initialization files should always
  84. # look in the current directory first.  This leads to well-known security
  85. # and confusion problems, but users insist on it.
  86. # NOTE: this also affects searching for files named on the command line:
  87. # see the "File searching" section of use.txt for full details.
  88. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  89.  
  90. SEARCH_HERE_FIRST=1
  91.  
  92. # Define the name of the interpreter initialization file.
  93. # (There is no reason to change this.)
  94.  
  95. GS_INIT=gs_init.ps
  96.  
  97. # Choose generic configuration options.
  98.  
  99. # -DDEBUG
  100. #    includes debugging features (-Z switch) in the code.
  101. #      Code runs substantially slower even if no debugging switches
  102. #      are set.
  103. # -DNOPRIVATE
  104. #    makes private (static) procedures and variables public,
  105. #      so they are visible to the debugger and profiler.
  106. #      No execution time or space penalty.
  107.  
  108. GENOPT=
  109.  
  110. # Define the name of the executable file.
  111.  
  112. GS=gs
  113.  
  114. # Define the directory where the IJG JPEG library sources are stored,
  115. # and the major version of the library that is stored there.
  116. # You may need to change this if the IJG library version changes.
  117. # See jpeg.mak for more information.
  118.  
  119. JSRCDIR=jpeg-6a
  120. JVERSION=6
  121.  
  122. # Define the directory where the PNG library sources are stored,
  123. # and the version of the library that is stored there.
  124. # You may need to change this if the libpng version changes.
  125. # See libpng.mak for more information.
  126.  
  127. PSRCDIR=libpng
  128. PVERSION=96
  129.  
  130. # Choose whether to use a shared version of the PNG library (-lpng).
  131. # See gs.mak and make.txt for more information.
  132.  
  133. SHARE_LIBPNG=0
  134.  
  135. # Define the directory where the zlib sources are stored.
  136. # See zlib.mak for more information.
  137.  
  138. ZSRCDIR=zlib
  139.  
  140. # Choose whether to use a shared version of the zlib library (-lgz).
  141. # See gs.mak and make.txt for more information.
  142.  
  143. SHARE_ZLIB=0
  144.  
  145. # Define the configuration ID.  Read gs.mak carefully before changing this.
  146.  
  147. CONFIG=
  148.  
  149. # ------ Platform-specific options ------ #
  150.  
  151. # Define the name of the C compiler.
  152.  
  153. CC=gcc
  154.  
  155. # Define the other compilation flags.
  156. # Add -DBSD4_2 for 4.2bsd systems.
  157. # Add -DSYSV for System V or DG/UX.
  158. # Add -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
  159. #   or any System III Unix, or System V release 3-or-older Unix.
  160. # Add -DSVR4 (not -DSYSV) for System V release 4.
  161. # XCFLAGS can be set from the command line.
  162. # We don't include -ansi, because this gets in the way of the platform-
  163. #   specific stuff that <math.h> typically needs; nevertheless, we expect
  164. #   gcc to accept ANSI-style function prototypes and function definitions.
  165. XCFLAGS=
  166.  
  167. # Under DJGPP, since we strip the executable by default, we may as
  168. # well *not* use '-g'.
  169.  
  170. # CFLAGS=-g -O $(XCFLAGS)
  171. CFLAGS=-O $(XCFLAGS)
  172.  
  173. # Define platform flags for ld.
  174. # Ultrix wants -x.
  175. # SunOS 4.n may need -Bstatic.
  176. # XLDFLAGS can be set from the command line.
  177. XLDFLAGS=
  178.  
  179. LDFLAGS=$(XLDFLAGS)
  180.  
  181. # Define any extra libraries to link into the executable.
  182. # ISC Unix 2.2 wants -linet.
  183. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  184. # (Libraries required by individual drivers are handled automatically.)
  185.  
  186. EXTRALIBS=-lsys -lc
  187.  
  188. # Define the include switch(es) for the X11 header files.
  189. # This can be null if handled in some other way (e.g., the files are
  190. # in /usr/include, or the directory is supplied by an environment variable);
  191. # in particular, SCO Xenix, Unix, and ODT just want
  192. #XINCLUDE=
  193. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  194. # not in $(XINCLUDE).
  195.  
  196. XINCLUDE=
  197.  
  198. # Define the directory/ies and library names for the X11 library files.
  199. # The former can be null if these files are in the default linker search path.
  200. # Unfortunately, Quarterdeck's old libraries did not conform to the
  201. # X11 conventions for naming, in that the main Xlib library was called
  202. # libx.a, not libx11.a.  To make things worse, both are provided in
  203. # the v2.00 library.  Creation dates indicate that 'libx.a' is left
  204. # over from a previous build (or this could just be on my system, but
  205. # others who have upgraded from the early version will have the same
  206. # problem---SJT).  Thus I will make the default to look for
  207. # 'libx11.a', since v1.0x does *not* have it and the linker will
  208. # complain.  With the reverse default, the linker will find to the
  209. # obsolete library on some systems.
  210.  
  211. # XLIBDIRS includes a prefix -L; XLIBDIR does not.
  212. XLIBDIRS=
  213. XLIBDIR=
  214. # reverse the comments if you have QDDVX10x or the prerelease version
  215. # of QDLIB200 (still available on some Simtel mirrors, unfortunately)
  216. # XLIBS=Xt Xext X
  217. XLIBS=Xt Xext X11
  218.  
  219. # Define whether this platform has floating point hardware:
  220. #    FPU_TYPE=2 means floating point is faster than fixed point.
  221. # (This is the case on some RISCs with multiple instruction dispatch.)
  222. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  223. # than fixed point.
  224. #    FPU_TYPE=0 means that floating point may be considerably slower.
  225. #    FPU_TYPE=-1 means that floating point is always much slower than
  226. # fixed point.
  227.  
  228. FPU_TYPE=1
  229.  
  230. # ------ Devices and features ------ #
  231.  
  232. # Choose the language feature(s) to include.  See gs.mak for details.
  233.  
  234. FEATURE_DEVS=level2.dev pdf.dev
  235.  
  236. # Choose whether to compile the .ps initialization files into the executable.
  237. # See gs.mak for details.
  238.  
  239. COMPILE_INITS=0
  240.  
  241. # Choose whether to store band lists on files or in memory.
  242. # The choices are 'file' or 'memory'.
  243.  
  244. BAND_LIST_STORAGE=file
  245.  
  246. # Choose which compression method to use when storing band lists in memory.
  247. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  248. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  249.  
  250. BAND_LIST_COMPRESSOR=zlib
  251.  
  252. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  253. # See gs.mak and sfxfd.c for more details.
  254.  
  255. FILE_IMPLEMENTATION=stdio
  256.  
  257. # Choose the device(s) to include.  See devs.mak for details.
  258.  
  259. DEVICE_DEVS=x11.dev
  260. DEVICE_DEVS1=
  261. DEVICE_DEVS2=
  262. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  263. DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  264. DEVICE_DEVS5=paintjet.dev pjetxl.dev uniprint.dev
  265. DEVICE_DEVS6=
  266. DEVICE_DEVS7=
  267. DEVICE_DEVS8=
  268. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  269. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  270. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  271. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  272. DEVICE_DEVS13=
  273. DEVICE_DEVS14=
  274. DEVICE_DEVS15=
  275.  
  276. # ---------------------------- End of options --------------------------- #
  277.  
  278. # Define the name of the partial makefile that specifies options --
  279. # used in dependencies.
  280.  
  281. MAKEFILE=dgc-head.mak
  282.  
  283. # Define the ANSI-to-K&R dependency.  (gcc accepts ANSI syntax.)
  284.  
  285. AK=
  286.  
  287. # Define the compilation rules and flags.
  288.  
  289. CCC=$(CC) $(CCFLAGS) -c
  290. CCLEAF=$(CCC) -fomit-frame-pointer
  291.  
  292. # --------------------------- Generic makefile ---------------------------- #
  293.  
  294. # The remainder of the makefile (unixhead.mak, gs.mak, devs.mak, unixtail.mak)
  295. # is generic.  tar_cat concatenates all these together.
  296. #    Copyright (C) 1994, 1996 Aladdin Enterprises.  All rights reserved.
  297. # This file is part of Aladdin Ghostscript.
  298. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  299. # or distributor accepts any responsibility for the consequences of using it,
  300. # or for whether it serves any particular purpose or works at all, unless he
  301. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  302. # License (the "License") for full details.
  303. # Every copy of Aladdin Ghostscript must include a copy of the License,
  304. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  305. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  306. # under certain conditions described in the License.  Among other things, the
  307. # License requires that the copyright notice and this notice be preserved on
  308. # all copies.
  309.  
  310. # Partial makefile, common to all Desqview/X configurations.
  311.  
  312. # This part of the makefile gets inserted after the compiler-specific part
  313. # (xxx-head.mak) and before gs.mak and devs.mak.
  314.  
  315. # ----------------------------- Generic stuff ----------------------------- #
  316.  
  317. # Define the platform name.
  318.  
  319. PLATFORM=dvx_
  320.  
  321. # Define the syntax for command, object, and executable files.
  322.  
  323. CMD=.bat
  324. O=-o ./
  325. OBJ=o
  326. XE=.exe
  327. XEAUX=.exe
  328.  
  329. # Define the current directory prefix and command invocations.
  330.  
  331. CAT=type
  332. D=\\
  333. EXP=
  334. SHELL=
  335. SH=
  336. SHP=
  337.  
  338. # Define generic commands.
  339.  
  340. CP_=cp
  341. RM_=rm -f
  342.  
  343. # Define the arguments for genconf.
  344.  
  345. CONFILES=-p -pl &-l%%s -ol ld.tr
  346.  
  347. # Define the compilation rules and flags.
  348.  
  349. CCFLAGS=$(GENOPT) $(CFLAGS)
  350.  
  351. .c.o: $(AK)
  352.     $(CCC) $*.c
  353.  
  354. CCCF=$(CCC)
  355. CCD=$(CCC)
  356. CCINT=$(CCC)
  357.  
  358. # Patch a couple of PC-specific things that aren't relevant to DV/X builds,
  359. # but that cause `make' to produce warnings.
  360.  
  361. BGIDIR=***UNUSED***
  362. PCFBASM=
  363. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  364. # This file is part of Aladdin Ghostscript.
  365. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  366. # or distributor accepts any responsibility for the consequences of using it,
  367. # or for whether it serves any particular purpose or works at all, unless he
  368. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  369. # License (the "License") for full details.
  370. # Every copy of Aladdin Ghostscript must include a copy of the License,
  371. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  372. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  373. # under certain conditions described in the License.  Among other things, the
  374. # License requires that the copyright notice and this notice be preserved on
  375. # all copies.
  376.  
  377. # Generic makefile, common to all platforms.
  378. # The platform-specific makefiles `include' this file.
  379. # They define the following symbols:
  380. #    GS - the name of the executable (without the extension, if any).
  381. #    GS_LIB_DEFAULT - the default directory/ies for searching for the
  382. #        initialization and font files at run time.
  383. #    SEARCH_HERE_FIRST - the default setting of -P (whether or not to
  384. #        look for files in the current directory first).
  385. #    GS_DOCDIR - the directory where documentation will be available
  386. #        at run time.
  387. #    JSRCDIR - the directory where the IJG JPEG library source code
  388. #        is stored (at compilation time).
  389. #    JVERSION - the major version number of the IJG JPEG library.
  390. #    PSRCDIR, PVERSION - the same for libpng.
  391. #    ZSRCDIR - the same for zlib.
  392. #    SHARE_LIBPNG - normally 0; if set to 1, asks the linker to use
  393. #        an existing compiled libpng (-lpng) instead of compiling and
  394. #        linking libpng explicitly.
  395. #    LIBPNG_NAME, the name of the shared libpng, currently always
  396. #        png (libpng, -lpng).
  397. #    SHARE_ZLIB - normally 0; if set to 1, asks the linker to use
  398. #        an existing compiled zlib (-lgz or -lz) instead of compiling
  399. #        and linking libgz/libz explicitly.
  400. #    ZLIB_NAME - the name of the shared zlib, either gz (for libgz, -lgz)
  401. #        or z (for libz, -lz).
  402. #    CONFIG - a configuration ID, added at the request of a customer,
  403. #        that is supposed to help in maintaining multiple variants in
  404. #        a single directory.  Normally this is an empty string;
  405. #        it may be any string that is legal as part of a file name.
  406. #    DEVICE_DEVS - the devices to include in the executable.
  407. #        See devs.mak for details.
  408. #    DEVICE_DEVS1...DEVICE_DEVS15 - additional devices, if the definition
  409. #        of DEVICE_DEVS doesn't fit on one line.  See devs.mak for details.
  410. #    FEATURE_DEVS - what features to include in the executable.
  411. #        Normally this is one of:
  412. #            level1 - a standard PostScript Level 1 language
  413. #            interpreter.
  414. #            level2 - a standard PostScript Level 2 language
  415. #            interpreter.
  416. #            pdf - a PDF-capable interpreter.
  417. #        You may include both level1 and pdf, or both level2 and pdf.
  418. #        The following feature may be added to either of the standard
  419. #        configurations:
  420. #            ccfonts - precompile fonts into C, and link them
  421. #            with the executable.  See fonts.txt for details.
  422. #        The remaining features are of interest primarily to developers
  423. #        who want to "mix and match" features to create custom
  424. #        configurations:
  425. #            dps - (partial) support for Display PostScript extensions:
  426. #            see language.txt for details.
  427. #            btoken - support for binary token encodings.
  428. #            Included automatically in the dps and level2 features.
  429. #            cidfont - (currently partial) support for CID-keyed fonts.
  430. #            color - support for the Level 1 CMYK color extensions.
  431. #            Included automatically in the dps and level2 features.
  432. #            compfont - support for composite (type 0) fonts.
  433. #            Included automatically in the level2 feature.
  434. #            dct - support for DCTEncode/Decode filters.
  435. #            Included automatically in the level2 feature.
  436. #            epsf - support for recognizing and skipping the binary
  437. #            header of MS-DOS EPSF files.
  438. #            filter - support for Level 2 filters (other than eexec,
  439. #            ASCIIHexEncode/Decode, NullEncode, PFBDecode,
  440. #            RunLengthEncode/Decode, and SubFileDecode, which are
  441. #            always included, and DCTEncode/Decode,
  442. #            which are separate).
  443. #            Included automatically in the level2 feature.
  444. #            fzlib - support for zlibEncode/Decode filters.
  445. #            ttfont - support for TrueType fonts.
  446. #            type1 - support for Type 1 fonts and eexec;
  447. #            normally included automatically in all configurations.
  448. #            type42 - support for Type 42 (embedded TrueType) fonts.
  449. #            Included automatically in the level2 feature.
  450. #        There are quite a number of other sub-features that can be
  451. #        selectively included in or excluded from a configuration,
  452. #        but the above are the ones that are most likely to be of
  453. #        interest.
  454. #    COMPILE_INITS - normally 0; if set to 1, compiles the PostScript
  455. #        language initialization files (gs_init.ps et al) into the
  456. #        executable, eliminating the need for these files to be present
  457. #        at run time.
  458. #    BAND_LIST_STORAGE - normally file; if set to memory, stores band
  459. #        lists in memory (with compression if needed).
  460. #    BAND_LIST_COMPRESSOR - normally zlib: selects the compression method
  461. #        to use for band lists in memory.
  462. #    FILE_IMPLEMENTATION - normally stdio; if set to fd, uses file
  463. #        descriptors instead of buffered stdio for file I/O; if set to
  464. #        both, provides both implementations with different procedure
  465. #        names for the fd-based implementation (see sfxfd.c for
  466. #        more information).
  467. #    EXTEND_NAMES - a value N between 0 and 6, indicating that the name
  468. #        table should have a capacity of 2^(16+N) names.  This normally
  469. #        should be set to 0 (or left undefined), since non-zero values
  470. #        result in a larger fixed space overhead and slightly slower code.
  471. #        EXTEND_NAMES is ignored in 16-bit environments.
  472. #
  473. # It is very unlikely that anyone would want to edit the remaining
  474. #   symbols, but we describe them here for completeness:
  475. #    GS_INIT - the name of the initialization file for the interpreter,
  476. #        normally gs_init.ps.
  477. #    PLATFORM - a "device" name for the platform, so that platforms can
  478. #        add various kinds of resources like devices and features.
  479. #    CMD - the suffix for shell command files (e.g., null or .bat).
  480. #        (This is only needed in a few places.)
  481. #    D - the directory separator character (\ for MS-DOS, / for Unix).
  482. #    O - the string for specifying the output file from the C compiler
  483. #        (-o for MS-DOS, -o ./ for Unix).
  484. #    OBJ - the extension for relocatable object files (e.g., o or obj).
  485. #    XE - the extension for executable files (e.g., null or .exe).
  486. #    XEAUX - the extension for the executable files (e.g., null or .exe)
  487. #        for the utility programs (ansi2knr and those compiled with
  488. #        CCAUX).
  489. #    BEGINFILES - the list of files that `make begin' and `make clean'
  490. #        should delete.
  491. #    CCA2K - the C invocation for the ansi2knr program, which is the only
  492. #        one that doesn't use ANSI C syntax.  (It is only needed if
  493. #        the main C compiler also isn't an ANSI compiler.)
  494. #    CCAUX - the C invocation for auxiliary programs (echogs, genarch,
  495. #        genconf, geninit).
  496. #    CCBEGIN - the compilation command for `make begin', normally
  497. #        $(CCC) *.c.
  498. #    CCC - the C invocation for normal compilation.
  499. #    CCD - the C invocation for files that store into frame buffers or
  500. #        device registers.  Needed because some optimizing compilers
  501. #        will eliminate necessary stores.
  502. #    CCCF - the C invocation for compiled fonts and other large,
  503. #        self-contained data modules.  Needed because MS-DOS
  504. #        requires using the 'huge' memory model for these.
  505. #    CCINT - the C invocation for compiling the main interpreter module,
  506. #        normally the same as CCC: this is needed because the
  507. #        Borland compiler generates *worse* code for this module
  508. #        (but only this module) when optimization (-O) is turned on.
  509. #    CCLEAF - the C invocation for compiling modules that contain only
  510. #        leaf procedures, which don't need to build stack frames.
  511. #        This is needed only because many compilers aren't able to
  512. #        recognize leaf procedures on their own.
  513. #    AK - if source files must be converted from ANSI to K&R syntax,
  514. #        this is $(ANSI2KNR_XE); if not, it is null.
  515. #        If a particular platform requires other utility programs
  516. #        to be built, AK must include them too.
  517. #    SHP - the prefix for invoking a shell script in the current directory
  518. #        (null for MS-DOS, $(SH) ./ for Unix).
  519. #    EXPP, EXP - the prefix for invoking an executable program in the
  520. #        current directory (null for MS-DOS, ./ for Unix).
  521. #    SH - the shell for scripts (null on MS-DOS, sh on Unix).
  522. #    CONFILES - the arguments for genconf to generate the appropriate
  523. #        linker control files (various).
  524. #    CP_ - the command for copying one file to another.  Because of
  525. #        limitations in the MS-DOS/MS Windows environment, the
  526. #        second argument must either be '.' (in which case the
  527. #        write date may be either preserved or set to the current
  528. #        date) or a file name (in which case the write date is
  529. #        always updated).
  530. #    RM_ - the command for deleting (a) file(s) (including wild cards,
  531. #        but limited to a single file or pattern).
  532. #    RMN_ = the command for deleting multiple files / patterns.
  533. #
  534. # The platform-specific makefiles must also include rules for creating
  535. # certain dynamically generated files:
  536. #    gconfig_.h - this indicates the presence or absence of
  537. #        certain system header files that are located in different
  538. #        places on different systems.  (It could be generated by
  539. #        the GNU `configure' program.)
  540. #    gconfigv.h - this indicates the status of certain machine-
  541. #        and configuration-specific features derived from definitions
  542. #        in the platform-specific makefile.
  543.  
  544. # Define the name of this makefile.
  545. GS_MAK=gs.mak
  546.  
  547. # Define the names of the executables.
  548. GS_XE=$(GS)$(XE)
  549. ANSI2KNR_XE=ansi2knr$(XEAUX)
  550. ECHOGS_XE=echogs$(XEAUX)
  551. GENARCH_XE=genarch$(XEAUX)
  552. GENCONF_XE=genconf$(XEAUX)
  553. GENINIT_XE=geninit$(XEAUX)
  554.  
  555. # Define the names of the CONFIG-dependent header files.
  556. # gconfig*.h and gconfx*.h are generated dynamically.
  557. gconfig_h=gconfxx$(CONFIG).h
  558. gconfigf_h=gconfxc$(CONFIG).h
  559.  
  560. # Watcom make insists that rules have a non-empty body!
  561. all default: $(GS_XE)
  562.     $(RM_) _temp_*
  563.  
  564. distclean maintainer-clean realclean: clean
  565.     $(RM_) makefile
  566.  
  567. clean: mostlyclean
  568.     $(RM_) arch.h
  569.     $(RM_) $(GS_XE)
  570.  
  571. mostlyclean:
  572.     $(RMN_) *.$(OBJ) *.a core gmon.out
  573.     $(RMN_) *.dev *.d_* devs*.tr gconfig*.h gconfx*.h j*.h o*.tr l*.tr
  574.     $(RMN_) deflate.h zutil.h
  575.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  576.     $(RMN_) _temp_* _temp_*.* *.map *.sym
  577.     $(RMN_) $(ANSI2KNR_XE) $(ECHOGS_XE) $(GENARCH_XE) $(GENCONF_XE) $(GENINIT_XE)
  578.     $(RMN_) gs_init.c $(BEGINFILES)
  579.  
  580. # Remove only configuration-dependent information.
  581. config-clean:
  582.     $(RMN_) *.dev devs*.tr gconfig*.h gconfx*.h o*.tr l*.tr
  583.  
  584. # A rule to do a quick and dirty compilation attempt when first installing
  585. # the interpreter.  Many of the compilations will fail:
  586. # follow this with 'make'.
  587.  
  588. begin:
  589.     $(RMN_) arch.h gconfig*.h gconfx*.h $(GENARCH_XE) $(GS_XE)
  590.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  591.     $(RMN_) gs_init.c $(BEGINFILES)
  592.     make arch.h gconfigv.h
  593.     - $(CCBEGIN)
  594.     $(RMN_) gconfig.$(OBJ) gdev*.$(OBJ) gp_*.$(OBJ) gscdefs.$(OBJ) gsmisc.$(OBJ)
  595.     $(RMN_) icfontab.$(OBJ) iconfig.$(OBJ) iinit.$(OBJ) interp.$(OBJ)
  596.  
  597. # Auxiliary programs
  598.  
  599. arch.h: $(GENARCH_XE)
  600.     $(EXPP) $(EXP)genarch arch.h
  601.  
  602. # Macros for constructing the *.dev files that describe features and
  603. # devices.
  604. SETDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-obj
  605. SETPDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-include -lpage -l-obj
  606. SETMOD=$(EXP)echogs -e .dev -w- -l-obj
  607. ADDMOD=$(EXP)echogs -e .dev -a-
  608.  
  609. # Define the compilation commands for the third-party libraries.
  610. CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR) -DPNG_USE_CONST
  611. CCCJ=$(CCC) -I. -I$(JSRCDIR)
  612. CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  613.  
  614. ######################## How to define new 'features' #######################
  615. #
  616. # One defines new 'features' exactly like devices (see devs.mak for details).
  617. # For example, one would define a feature abc by adding the following to
  618. # gs.mak:
  619. #
  620. #    abc_=abc1.$(OBJ) ...
  621. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_)
  622. #        $(SETMOD) abc $(abc_)
  623. #        $(ADDMOD) abc -obj ... [if needed]
  624. #        $(ADDMOD) abc -oper ... [if appropriate]
  625. #        $(ADDMOD) abc -ps ... [if appropriate]
  626. #
  627. # If the abc feature requires the presence of some other features jkl and
  628. # pqr, then the rules must look like this:
  629. #
  630. #    abc_=abc1.$(OBJ) ...
  631. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) jkl.dev pqr.dev
  632. #        $(SETMOD) abc $(abc_)
  633. #        ...
  634. #        $(ADDMOD) abc -include jkl pqr
  635.  
  636. # --------------------- Configuration-dependent files --------------------- #
  637.  
  638. # gconfig.h shouldn't have to depend on DEVS_ALL, but that would
  639. # involve rewriting gsconfig to only save the device name, not the
  640. # contents of the <device>.dev files.
  641. # FEATURE_DEVS must precede DEVICE_DEVS so that devices can override
  642. # features in obscure cases.
  643.  
  644. DEVS_ALL=$(PLATFORM).dev $(FEATURE_DEVS) \
  645.   $(DEVICE_DEVS) $(DEVICE_DEVS1) \
  646.   $(DEVICE_DEVS2) $(DEVICE_DEVS3) $(DEVICE_DEVS4) $(DEVICE_DEVS5) \
  647.   $(DEVICE_DEVS6) $(DEVICE_DEVS7) $(DEVICE_DEVS8) $(DEVICE_DEVS9) \
  648.   $(DEVICE_DEVS10) $(DEVICE_DEVS11) $(DEVICE_DEVS12) $(DEVICE_DEVS13) \
  649.   $(DEVICE_DEVS14) $(DEVICE_DEVS15)
  650.  
  651. devs_tr=devs.tr$(CONFIG)
  652. $(devs_tr): $(GS_MAK) $(MAKEFILE) $(ECHOGS_XE)
  653.     $(EXP)echogs -w $(devs_tr) - -include $(PLATFORM).dev
  654.     $(EXP)echogs -a $(devs_tr) - $(FEATURE_DEVS)
  655.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS)
  656.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS1)
  657.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS2)
  658.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS3)
  659.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS4)
  660.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS5)
  661.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS6)
  662.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS7)
  663.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS8)
  664.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS9)
  665.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS10)
  666.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS11)
  667.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS12)
  668.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS13)
  669.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS14)
  670.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS15)
  671.  
  672. # GCONFIG_EXTRAS can be set on the command line.
  673. # Note that it consists of arguments for echogs, i.e.,
  674. # it isn't just literal text.
  675. GCONFIG_EXTRAS=
  676.  
  677. ld_tr=ld$(CONFIG).tr
  678. $(gconfig_h) $(ld_tr) lib.tr: \
  679.   $(GS_MAK) $(MAKEFILE) version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) libcore.dev
  680.     $(EXP)genconf $(devs_tr) libcore.dev -h $(gconfig_h) $(CONFILES)
  681.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_LIB_DEFAULT -x 2022 $(GS_LIB_DEFAULT) -x 22
  682.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u SEARCH_HERE_FIRST -s $(SEARCH_HERE_FIRST)
  683.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_DOCDIR -x 2022 $(GS_DOCDIR) -x 22
  684.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_INIT -x 2022 $(GS_INIT) -x 22
  685.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISION -s $(GS_REVISION)
  686.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISIONDATE -s $(GS_REVISIONDATE)
  687.     $(EXP)echogs -a $(gconfig_h) $(GCONFIG_EXTRAS)
  688.  
  689. ################################################################
  690. # The other platform-independent makefiles are concatenated
  691. # (or included) after this one:
  692. #    lib.mak
  693. #    int.mak
  694. #    jpeg.mak
  695. #    libpng.mak
  696. #    zlib.mak
  697. #    devs.mak
  698. ################################################################
  699. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  700. # This file is part of Aladdin Ghostscript.
  701. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  702. # or distributor accepts any responsibility for the consequences of using it,
  703. # or for whether it serves any particular purpose or works at all, unless he
  704. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  705. # License (the "License") for full details.
  706. # Every copy of Aladdin Ghostscript must include a copy of the License,
  707. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  708. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  709. # under certain conditions described in the License.  Among other things, the
  710. # License requires that the copyright notice and this notice be preserved on
  711. # all copies.
  712.  
  713. # (Platform-independent) makefile for graphics library and other support code.
  714. # See the end of gs.mak for where this fits into the build process.
  715.  
  716. # Define the name of this makefile.
  717. LIB_MAK=lib.mak
  718.  
  719. # Define the inter-dependencies of the .h files.
  720. # Since not all versions of `make' defer expansion of macros,
  721. # we must list these in bottom-to-top order.
  722.  
  723. # Generic files
  724.  
  725. arch_h=arch.h
  726. stdpre_h=stdpre.h
  727. std_h=std.h $(arch_h) $(stdpre_h)
  728.  
  729. # Platform interfaces
  730.  
  731. gp_h=gp.h
  732. gpcheck_h=gpcheck.h
  733.  
  734. # Configuration definitions
  735.  
  736. # gconfig*.h are generated dynamically.
  737. gconfig__h=gconfig_.h
  738. gconfigv_h=gconfigv.h
  739. gscdefs_h=gscdefs.h
  740.  
  741. # C library interfaces
  742.  
  743. # Because of variations in the "standard" header files between systems, and
  744. # because we must include std.h before any file that includes sys/types.h,
  745. # we define local include files named *_.h to substitute for <*.h>.
  746.  
  747. vmsmath_h=vmsmath.h
  748.  
  749. dos__h=dos_.h
  750. ctype__h=ctype_.h $(std_h)
  751. dirent__h=dirent_.h $(std_h) $(gconfig__h)
  752. errno__h=errno_.h $(std_h)
  753. malloc__h=malloc_.h $(std_h)
  754. math__h=math_.h $(std_h) $(vmsmath_h)
  755. memory__h=memory_.h $(std_h)
  756. stat__h=stat_.h $(std_h)
  757. stdio__h=stdio_.h $(std_h)
  758. string__h=string_.h $(std_h)
  759. time__h=time_.h $(std_h) $(gconfig__h)
  760. windows__h=windows_.h
  761.  
  762. # Miscellaneous
  763.  
  764. gdebug_h=gdebug.h
  765. gsalloc_h=gsalloc.h
  766. gsargs_h=gsargs.h
  767. gserror_h=gserror.h
  768. gserrors_h=gserrors.h
  769. gsexit_h=gsexit.h
  770. gsgc_h=gsgc.h
  771. gsio_h=gsio.h
  772. gsmdebug_h=gsmdebug.h
  773. gsmemory_h=gsmemory.h
  774. gsrefct_h=gsrefct.h
  775. gsstruct_h=gsstruct.h
  776. gstypes_h=gstypes.h
  777. gx_h=gx.h $(stdio__h) $(gdebug_h) $(gserror_h) $(gsio_h) $(gsmemory_h) $(gstypes_h)
  778.  
  779. GX=$(AK) $(gx_h)
  780. GXERR=$(GX) $(gserrors_h)
  781.  
  782. ###### Support
  783.  
  784. ### Include files
  785.  
  786. gsbitops_h=gsbitops.h
  787. gsbittab_h=gsbittab.h
  788. gsflip_h=gsflip.h
  789. gsuid_h=gsuid.h
  790. gsutil_h=gsutil.h
  791. gxarith_h=gxarith.h
  792. gxbitmap_h=gxbitmap.h $(gstypes_h)
  793. gxfarith_h=gxfarith.h $(gconfigv_h) $(gxarith_h)
  794. gxfixed_h=gxfixed.h
  795. gxobj_h=gxobj.h $(gxbitmap_h)
  796. # Out of order
  797. gxalloc_h=gxalloc.h $(gsalloc_h) $(gxobj_h)
  798.  
  799. ### Executable code
  800.  
  801. gsalloc.$(OBJ): gsalloc.c $(GX) $(memory__h) $(string__h) \
  802.   $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  803.  
  804. gsargs.$(OBJ): gsargs.c $(ctype__h) $(stdio__h) $(string__h)\
  805.  $(gsargs_h) $(gsexit_h) $(gsmemory_h)
  806.  
  807. gsbitops.$(OBJ): gsbitops.c $(AK) $(memory__h) $(stdio__h)\
  808.  $(gdebug_h) $(gsbitops_h) $(gstypes_h)
  809.  
  810. gsbittab.$(OBJ): gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h)
  811.  
  812. # gsfemu is only used in FPU-less configurations, and currently only with gcc.
  813. # We thought using CCLEAF would produce smaller code, but it actually
  814. # produces larger code!
  815. gsfemu.$(OBJ): gsfemu.c $(AK) $(std_h)
  816.  
  817. # gsflip is not part of the standard configuration: it's rather large,
  818. # and no standard facility requires it.
  819. gsflip.$(OBJ): gsflip.c $(GX) $(gsbittab_h) $(gsflip_h)
  820.     $(CCLEAF) gsflip.c
  821.  
  822. gsmemory.$(OBJ): gsmemory.c $(GX) $(malloc__h) $(memory__h) \
  823.   $(gsmdebug_h) $(gsrefct_h) $(gsstruct_h)
  824.  
  825. gsmisc.$(OBJ): gsmisc.c $(GXERR) $(gconfigv_h) \
  826.   $(malloc__h) $(math__h) $(memory__h) $(gpcheck_h) $(gxfarith_h) $(gxfixed_h)
  827.  
  828. # gsnogc currently is only used in library-only configurations.
  829. gsnogc.$(OBJ): gsnogc.c $(GX)\
  830.  $(gsgc_h) $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  831.  
  832. gsutil.$(OBJ): gsutil.c $(AK) $(memory__h) $(string__h) $(gconfigv_h)\
  833.  $(gstypes_h) $(gsuid_h) $(gsutil_h)
  834.  
  835. ###### Low-level facilities and utilities
  836.  
  837. ### Include files
  838.  
  839. gdevbbox_h=gdevbbox.h
  840. gdevmem_h=gdevmem.h $(gsbitops_h)
  841. gdevmrop_h=gdevmrop.h
  842.  
  843. gsccode_h=gsccode.h
  844. gsccolor_h=gsccolor.h $(gsstruct_h)
  845. gscsel_h=gscsel.h
  846. gscolor1_h=gscolor1.h
  847. gscoord_h=gscoord.h
  848. gscpm_h=gscpm.h
  849. gsdevice_h=gsdevice.h
  850. gsfcmap_h=gsfcmap.h $(gsccode_h)
  851. gsfont_h=gsfont.h
  852. gshsb_h=gshsb.h
  853. gsht_h=gsht.h
  854. gsht1_h=gsht1.h $(gsht_h)
  855. gsiparam_h=gsiparam.h
  856. gsjconf_h=gsjconf.h $(std_h)
  857. gslib_h=gslib.h
  858. gslparam_h=gslparam.h
  859. gsmatrix_h=gsmatrix.h
  860. gspaint_h=gspaint.h
  861. gsparam_h=gsparam.h
  862. gspath2_h=gspath2.h
  863. gspenum_h=gspenum.h
  864. gsropt_h=gsropt.h
  865. gsxfont_h=gsxfont.h
  866. # Out of order
  867. gschar_h=gschar.h $(gsccode_h) $(gscpm_h)
  868. gscolor2_h=gscolor2.h $(gsccolor_h) $(gsuid_h) $(gxbitmap_h)
  869. gsimage_h=gsimage.h $(gsiparam_h)
  870. gsline_h=gsline.h $(gslparam_h)
  871. gspath_h=gspath.h $(gspenum_h)
  872. gsrop_h=gsrop.h $(gsropt_h)
  873.  
  874. gxbcache_h=gxbcache.h $(gxbitmap_h)
  875. gxchar_h=gxchar.h $(gschar_h)
  876. gxcindex_h=gxcindex.h
  877. gxcvalue_h=gxcvalue.h
  878. gxclio_h=gxclio.h
  879. gxclip2_h=gxclip2.h
  880. gxcolor2_h=gxcolor2.h $(gscolor2_h) $(gsrefct_h) $(gxbitmap_h)
  881. gxcoord_h=gxcoord.h $(gscoord_h)
  882. gxcpath_h=gxcpath.h
  883. gxdda_h=gxdda.h
  884. gxdevrop_h=gxdevrop.h
  885. gxdevmem_h=gxdevmem.h
  886. gxdither_h=gxdither.h
  887. gxfcmap_h=gxfcmap.h $(gsfcmap_h) $(gsuid_h)
  888. gxfont0_h=gxfont0.h
  889. gxfrac_h=gxfrac.h
  890. gxftype_h=gxftype.h
  891. gxhttile_h=gxhttile.h
  892. gxhttype_h=gxhttype.h
  893. gxiodev_h=gxiodev.h $(stat__h)
  894. gxline_h=gxline.h $(gslparam_h)
  895. gxlum_h=gxlum.h
  896. gxmatrix_h=gxmatrix.h $(gsmatrix_h)
  897. gxpaint_h=gxpaint.h
  898. gxpath_h=gxpath.h $(gscpm_h) $(gslparam_h) $(gspenum_h)
  899. gxpcache_h=gxpcache.h
  900. gxpcolor_h=gxpcolor.h $(gxpcache_h)
  901. gxsample_h=gxsample.h
  902. gxstate_h=gxstate.h
  903. gxtmap_h=gxtmap.h
  904. gxxfont_h=gxxfont.h $(gsccode_h) $(gsmatrix_h) $(gsuid_h) $(gsxfont_h)
  905. # The following are out of order because they include other files.
  906. gsdcolor_h=gsdcolor.h $(gsccolor_h) $(gxarith_h) $(gxbitmap_h) $(gxcindex_h) $(gxhttile_h)
  907. gxdcolor_h=gxdcolor.h $(gscsel_h) $(gsdcolor_h) $(gsropt_h) $(gsstruct_h)
  908. gxdevice_h=gxdevice.h $(gsdcolor_h) $(gsiparam_h) $(gsmatrix_h) \
  909.   $(gsropt_h) $(gsstruct_h) $(gsxfont_h) \
  910.   $(gxbitmap_h) $(gxcindex_h) $(gxcvalue_h) $(gxfixed_h)
  911. gxdht_h=gxdht.h $(gsrefct_h) $(gxarith_h) $(gxhttype_h)
  912. gxctable_h=gxctable.h $(gxfixed_h) $(gxfrac_h)
  913. gxfcache_h=gxfcache.h $(gsuid_h) $(gsxfont_h) $(gxbcache_h) $(gxftype_h)
  914. gxfont_h=gxfont.h $(gsfont_h) $(gsuid_h) $(gsstruct_h) $(gxftype_h)
  915. gscie_h=gscie.h $(gsrefct_h) $(gxctable_h)
  916. gscsepr_h=gscsepr.h
  917. gscspace_h=gscspace.h
  918. gxdcconv_h=gxdcconv.h $(gxfrac_h)
  919. gxfmap_h=gxfmap.h $(gsrefct_h) $(gxfrac_h) $(gxtmap_h)
  920. gxistate_h=gxistate.h $(gscsel_h) $(gsropt_h) $(gxcvalue_h) $(gxfixed_h) $(gxline_h) $(gxmatrix_h) $(gxtmap_h)
  921. gxclist_h=gxclist.h $(gscspace_h) $(gxbcache_h) $(gxclio_h) $(gxistate_h)
  922. gxcmap_h=gxcmap.h $(gscsel_h) $(gxcvalue_h) $(gxfmap_h)
  923. gxcspace_h=gxcspace.h $(gscspace_h) $(gsccolor_h) $(gscsel_h) $(gsstruct_h) $(gxfrac_h)
  924. gxht_h=gxht.h $(gsht1_h) $(gsrefct_h) $(gxhttype_h) $(gxtmap_h)
  925. gscolor_h=gscolor.h $(gxtmap_h)
  926. gsstate_h=gsstate.h $(gscolor_h) $(gscsel_h) $(gsdevice_h) $(gsht_h) $(gsline_h)
  927.  
  928. gzacpath_h=gzacpath.h
  929. gzcpath_h=gzcpath.h $(gxcpath_h)
  930. gzht_h=gzht.h $(gscsel_h) $(gxdht_h) $(gxfmap_h) $(gxht_h) $(gxhttile_h)
  931. gzline_h=gzline.h $(gxline_h)
  932. gzpath_h=gzpath.h $(gsstruct_h) $(gxpath_h)
  933. gzstate_h=gzstate.h $(gscpm_h) $(gsstate_h) $(gxdcolor_h) $(gxistate_h) $(gxstate_h)
  934.  
  935. gdevprn_h=gdevprn.h $(memory__h) $(string__h) $(gx_h) \
  936.   $(gserrors_h) $(gsmatrix_h) $(gsparam_h) $(gsutil_h) \
  937.   $(gxdevice_h) $(gxdevmem_h) $(gxclist_h)
  938.  
  939. sa85x_h=sa85x.h
  940. sbtx_h=sbtx.h
  941. scanchar_h=scanchar.h
  942. scommon_h=scommon.h $(gsmemory_h) $(gstypes_h) $(gsstruct_h)
  943. sdct_h=sdct.h
  944. shc_h=shc.h $(gsbittab_h)
  945. siscale_h=siscale.h $(gconfigv_h)
  946. sjpeg_h=sjpeg.h
  947. slzwx_h=slzwx.h
  948. spcxx_h=spcxx.h
  949. spdiffx_h=spdiffx.h
  950. spngpx_h=spngpx.h
  951. srlx_h=srlx.h
  952. sstring_h=sstring.h
  953. strimpl_h=strimpl.h $(scommon_h) $(gstypes_h) $(gsstruct_h)
  954. szlibx_h=szlibx.h
  955. # Out of order
  956. scf_h=scf.h $(shc_h)
  957. scfx_h=scfx.h $(shc_h)
  958. gximage_h=gximage.h $(gsiparam_h) $(gxcspace_h) $(gxdda_h) $(gxsample_h)\
  959.  $(siscale_h) $(strimpl_h)
  960.  
  961. ### Executable code
  962.  
  963. # gconfig and gscdefs are handled specially.  Currently they go in psbase
  964. # rather than in libcore, which is clearly wrong.
  965. gconfig=gconfig$(CONFIG)
  966. $(gconfig).$(OBJ): gconf.c $(GX) \
  967.   $(gscdefs_h) $(gconfig_h) $(gxdevice_h) $(gxiodev_h) $(MAKEFILE)
  968.     $(RM_) gconfig.h
  969.     $(RM_) $(gconfig).c
  970.     $(CP_) $(gconfig_h) gconfig.h
  971.     $(CP_) gconf.c $(gconfig).c
  972.     $(CCC) $(gconfig).c
  973.     $(RM_) gconfig.h
  974.     $(RM_) $(gconfig).c
  975.  
  976. gscdefs=gscdefs$(CONFIG)
  977. $(gscdefs).$(OBJ): gscdef.c $(stdpre_h) $(gscdefs_h) $(gconfig_h) $(MAKEFILE)
  978.     $(RM_) gconfig.h
  979.     $(RM_) $(gscdefs).c
  980.     $(CP_) $(gconfig_h) gconfig.h
  981.     $(CP_) gscdef.c $(gscdefs).c
  982.     $(CCC) $(gscdefs).c
  983.     $(RM_) gconfig.h
  984.     $(RM_) $(gscdefs).c
  985.  
  986. gxacpath.$(OBJ): gxacpath.c $(GXERR) \
  987.   $(gsdcolor_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  988.   $(gxdevice_h) $(gxfixed_h) $(gxpaint_h) \
  989.   $(gzacpath_h) $(gzcpath_h) $(gzpath_h)
  990.  
  991. gxbcache.$(OBJ): gxbcache.c $(GX) $(memory__h) \
  992.   $(gsmdebug_h) $(gxbcache_h)
  993.  
  994. gxccache.$(OBJ): gxccache.c $(GXERR) $(gpcheck_h) \
  995.   $(gscspace_h) $(gsimage_h) $(gsstruct_h) \
  996.   $(gxchar_h) $(gxdevice_h) $(gxdevmem_h) $(gxfcache_h) \
  997.   $(gxfixed_h) $(gxfont_h) $(gxhttile_h) $(gxmatrix_h) $(gxxfont_h) \
  998.   $(gzstate_h) $(gzpath_h) $(gzcpath_h) 
  999.  
  1000. gxccman.$(OBJ): gxccman.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1001.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h) $(gxfixed_h) $(gxmatrix_h)\
  1002.  $(gxdevice_h) $(gxdevmem_h) $(gxfont_h) $(gxfcache_h) $(gxchar_h)\
  1003.  $(gxxfont_h) $(gzstate_h) $(gzpath_h)
  1004.  
  1005. gxcht.$(OBJ): gxcht.c $(GXERR) $(memory__h)\
  1006.  $(gsutil_h)\
  1007.  $(gxcmap_h) $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h)\
  1008.  $(gxmatrix_h) $(gzht_h)
  1009.  
  1010. gxcmap.$(OBJ): gxcmap.c $(GXERR) \
  1011.   $(gsccolor_h) \
  1012.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gxdither_h) \
  1013.   $(gxfarith_h) $(gxfrac_h) $(gxlum_h) $(gzstate_h)
  1014.  
  1015. gxcpath.$(OBJ): gxcpath.c $(GXERR)\
  1016.  $(gscoord_h) $(gsstruct_h) $(gsutil_h)\
  1017.  $(gxdevice_h) $(gxfixed_h) $(gzpath_h) $(gzcpath_h)
  1018.  
  1019. gxdcconv.$(OBJ): gxdcconv.c $(GX) \
  1020.   $(gsdcolor_h) $(gxcmap_h) $(gxdcconv_h) $(gxdevice_h) \
  1021.   $(gxfarith_h) $(gxistate_h) $(gxlum_h)
  1022.  
  1023. gxdcolor.$(OBJ): gxdcolor.c $(GX) \
  1024.   $(gsbittab_h) $(gxdcolor_h) $(gxdevice_h)
  1025.  
  1026. gxdither.$(OBJ): gxdither.c $(GX) \
  1027.   $(gsstruct_h) $(gsdcolor_h) \
  1028.   $(gxcmap_h) $(gxdevice_h) $(gxdither_h) $(gxlum_h) $(gzht_h)
  1029.  
  1030. gxfill.$(OBJ): gxfill.c $(GXERR) $(math__h) \
  1031.   $(gsstruct_h) \
  1032.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxhttile_h) \
  1033.   $(gxistate_h) $(gxpaint_h) \
  1034.   $(gzcpath_h) $(gzpath_h)
  1035.  
  1036. gxht.$(OBJ): gxht.c $(GXERR) $(memory__h)\
  1037.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h)\
  1038.  $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gzht_h)
  1039.  
  1040. gximage.$(OBJ): gximage.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1041.  $(gsccolor_h) $(gspaint_h) $(gsstruct_h)\
  1042.  $(gxfixed_h) $(gxfrac_h) $(gxarith_h) $(gxmatrix_h)\
  1043.  $(gxdevice_h) $(gzpath_h) $(gzstate_h)\
  1044.  $(gzcpath_h) $(gxdevmem_h) $(gximage_h) $(gdevmrop_h)
  1045.  
  1046. gximage0.$(OBJ): gximage0.c $(GXERR) $(memory__h)\
  1047.  $(gxcpath_h) $(gxdevice_h) $(gximage_h)
  1048.  
  1049. gximage1.$(OBJ): gximage1.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1050.  $(gdevmem_h) $(gsbittab_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1051.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1052.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1053.  $(gzht_h) $(gzpath_h)
  1054.  
  1055. gximage2.$(OBJ): gximage2.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1056.  $(gdevmem_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1057.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1058.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1059.  $(gzht_h) $(gzpath_h)
  1060.  
  1061. gxpaint.$(OBJ): gxpaint.c $(GX) \
  1062.   $(gxdevice_h) $(gxhttile_h) $(gxpaint_h) $(gxpath_h) $(gzstate_h)
  1063.  
  1064. gxpath.$(OBJ): gxpath.c $(GXERR) \
  1065.   $(gsstruct_h) $(gxfixed_h) $(gzpath_h)
  1066.  
  1067. gxpath2.$(OBJ): gxpath2.c $(GXERR) $(math__h) \
  1068.   $(gxfixed_h) $(gxarith_h) $(gzpath_h)
  1069.  
  1070. gxpcopy.$(OBJ): gxpcopy.c $(GXERR) $(math__h) $(gconfigv_h) \
  1071.   $(gxfarith_h) $(gxfixed_h) $(gzpath_h)
  1072.  
  1073. gxpdash.$(OBJ): gxpdash.c $(GX) $(math__h) \
  1074.   $(gscoord_h) $(gsline_h) $(gsmatrix_h) \
  1075.   $(gxfixed_h) $(gzline_h) $(gzpath_h)
  1076.  
  1077. gxpflat.$(OBJ): gxpflat.c $(GX)\
  1078.  $(gxarith_h) $(gxfixed_h) $(gzpath_h)
  1079.  
  1080. gxsample.$(OBJ): gxsample.c $(GX)\
  1081.  $(gxsample_h)
  1082.  
  1083. gxstroke.$(OBJ): gxstroke.c $(GXERR) $(math__h) $(gpcheck_h) \
  1084.   $(gscoord_h) $(gsdcolor_h) $(gsdevice_h) \
  1085.   $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) \
  1086.   $(gxhttile_h) $(gxistate_h) $(gxmatrix_h) $(gxpaint_h) \
  1087.   $(gzcpath_h) $(gzline_h) $(gzpath_h)
  1088.  
  1089. ###### Higher-level facilities
  1090.  
  1091. gschar.$(OBJ): gschar.c $(GXERR) $(memory__h) $(string__h)\
  1092.  $(gspath_h) $(gsstruct_h) \
  1093.  $(gxfixed_h) $(gxarith_h) $(gxmatrix_h) $(gxcoord_h) $(gxdevice_h) $(gxdevmem_h) \
  1094.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxfcache_h) $(gzpath_h) $(gzstate_h)
  1095.  
  1096. gscolor.$(OBJ): gscolor.c $(GXERR) \
  1097.   $(gsccolor_h) $(gsstruct_h) $(gsutil_h) \
  1098.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gzstate_h)
  1099.  
  1100. gscoord.$(OBJ): gscoord.c $(GXERR) $(math__h) \
  1101.   $(gsccode_h) $(gxcoord_h) $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) $(gxfont_h) \
  1102.   $(gxmatrix_h) $(gxpath_h) $(gzstate_h)
  1103.  
  1104. gsdevice.$(OBJ): gsdevice.c $(GXERR) $(ctype__h) $(memory__h) $(string__h) $(gp_h)\
  1105.  $(gscdefs_h) $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstruct_h)\
  1106.  $(gxcmap_h) $(gxdevice_h) $(gxdevmem_h) $(gzstate_h)
  1107.  
  1108. gsdevmem.$(OBJ): gsdevmem.c $(GXERR) $(math__h) $(memory__h) \
  1109.   $(gxarith_h) $(gxdevice_h) $(gxdevmem_h)
  1110.  
  1111. gsdparam.$(OBJ): gsdparam.c $(GXERR) $(memory__h) $(string__h) \
  1112.   $(gsparam_h) $(gxdevice_h) $(gxfixed_h)
  1113.  
  1114. gsfont.$(OBJ): gsfont.c $(GXERR) $(memory__h)\
  1115.  $(gschar_h) $(gsstruct_h) \
  1116.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxfont_h) $(gxfcache_h)\
  1117.  $(gzstate_h)
  1118.  
  1119. gsht.$(OBJ): gsht.c $(GXERR) $(memory__h)\
  1120.  $(gsstruct_h) $(gsutil_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1121.  
  1122. gshtscr.$(OBJ): gshtscr.c $(GXERR) $(math__h) \
  1123.   $(gsstruct_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1124.  
  1125. gsimage.$(OBJ): gsimage.c $(GXERR) $(memory__h)\
  1126.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  1127.   $(gxarith_h) $(gxdevice_h) $(gzstate_h)
  1128.  
  1129. gsimpath.$(OBJ): gsimpath.c $(GXERR) \
  1130.   $(gsmatrix_h) $(gsstate_h) $(gspath_h)
  1131.  
  1132. gsinit.$(OBJ): gsinit.c $(memory__h) $(stdio__h) \
  1133.   $(gdebug_h) $(gp_h) $(gscdefs_h) $(gslib_h) $(gsmemory_h)
  1134.  
  1135. gsiodev.$(OBJ): gsiodev.c $(GXERR) $(errno__h) $(string__h) \
  1136.   $(gp_h) $(gsparam_h) $(gxiodev_h)
  1137.  
  1138. gsline.$(OBJ): gsline.c $(GXERR) $(math__h) $(memory__h)\
  1139.  $(gsline_h) $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gzline_h)
  1140.  
  1141. gsmatrix.$(OBJ): gsmatrix.c $(GXERR) $(math__h) \
  1142.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h)
  1143.  
  1144. gspaint.$(OBJ): gspaint.c $(GXERR) $(math__h) $(gpcheck_h)\
  1145.  $(gspaint_h) $(gspath_h) $(gsropt_h)\
  1146.  $(gxcpath_h) $(gxdevmem_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxpaint_h)\
  1147.  $(gzpath_h) $(gzstate_h)
  1148.  
  1149. gsparam.$(OBJ): gsparam.c $(GXERR) $(memory__h) $(string__h)\
  1150.  $(gsparam_h) $(gsstruct_h)
  1151.  
  1152. gspath.$(OBJ): gspath.c $(GXERR) \
  1153.   $(gscoord_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  1154.   $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1155.  
  1156. gsstate.$(OBJ): gsstate.c $(GXERR) $(memory__h)\
  1157.  $(gscie_h) $(gscolor2_h) $(gscoord_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1158.  $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxpcache_h) \
  1159.  $(gzstate_h) $(gzht_h) $(gzline_h) $(gzpath_h) $(gzcpath_h)
  1160.  
  1161. ###### The internal devices
  1162.  
  1163. ### The built-in device implementations:
  1164.  
  1165. # The bounding box device is not normally a free-standing device.
  1166. # To configure it as one for testing, change SETMOD to SETDEV, and also
  1167. # define TEST in gdevbbox.c.
  1168. bbox.dev: $(LIB_MAK) $(ECHOGS_XE) gdevbbox.$(OBJ)
  1169.     $(SETMOD) bbox gdevbbox.$(OBJ)
  1170.  
  1171. gdevbbox.$(OBJ): gdevbbox.c $(GXERR) $(math__h) $(memory__h) \
  1172.   $(gdevbbox_h) $(gsdevice_h) $(gsparam_h) \
  1173.   $(gxcpath_h) $(gxdevice_h) $(gxistate_h) $(gxpaint_h) $(gxpath_h)
  1174.  
  1175. gdevddrw.$(OBJ): gdevddrw.c $(GXERR) $(math__h) $(gpcheck_h) \
  1176.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h)
  1177.  
  1178. gdevdflt.$(OBJ): gdevdflt.c $(GXERR) $(gpcheck_h)\
  1179.  $(gsbittab_h) $(gsropt_h)\
  1180.  $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)
  1181.  
  1182. gdevnfwd.$(OBJ): gdevnfwd.c $(GX) \
  1183.   $(gxdevice_h)
  1184.  
  1185. # The render/RGB device is only here as an example, but we can configure
  1186. # it as a real device for testing.
  1187. rrgb.dev: $(LIB_MAK) $(ECHOGS_XE) gdevrrgb.$(OBJ) page.dev
  1188.     $(SETPDEV) rrgb gdevrrgb.$(OBJ)
  1189.  
  1190. gdevrrgb.$(OBJ): gdevrrgb.c $(AK)\
  1191.  $(gdevprn_h)
  1192.  
  1193. ### The memory devices:
  1194.  
  1195. gdevabuf.$(OBJ): gdevabuf.c $(GXERR) $(memory__h)\
  1196.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1197.  
  1198. gdevmem.$(OBJ): gdevmem.c $(GXERR) $(memory__h)\
  1199.  $(gsstruct_h) $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1200.  
  1201. gdevm1.$(OBJ): gdevm1.c $(GX) $(memory__h) $(gsrop_h)\
  1202.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1203.  
  1204. gdevm2.$(OBJ): gdevm2.c $(GX) $(memory__h)\
  1205.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1206.  
  1207. gdevm4.$(OBJ): gdevm4.c $(GX) $(memory__h)\
  1208.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1209.  
  1210. gdevm8.$(OBJ): gdevm8.c $(GX) $(memory__h)\
  1211.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1212.  
  1213. gdevm16.$(OBJ): gdevm16.c $(GX) $(memory__h)\
  1214.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1215.  
  1216. gdevm24.$(OBJ): gdevm24.c $(GX) $(memory__h)\
  1217.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1218.  
  1219. gdevm32.$(OBJ): gdevm32.c $(GX) $(memory__h)\
  1220.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1221.  
  1222. gdevmpla.$(OBJ): gdevmpla.c $(GX) $(memory__h)\
  1223.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1224.  
  1225. # Create a pseudo-"feature" for the entire graphics library.
  1226.  
  1227. LIB1s=gsalloc.$(OBJ) gsbitops.$(OBJ) gsbittab.$(OBJ)
  1228. LIB2s=gschar.$(OBJ) gscolor.$(OBJ) gscoord.$(OBJ) gsdevice.$(OBJ) gsdevmem.$(OBJ)
  1229. LIB3s=gsdparam.$(OBJ) gsfont.$(OBJ) gsht.$(OBJ) gshtscr.$(OBJ)
  1230. LIB4s=gsimage.$(OBJ) gsimpath.$(OBJ) gsinit.$(OBJ) gsiodev.$(OBJ)
  1231. LIB5s=gsline.$(OBJ) gsmatrix.$(OBJ) gsmemory.$(OBJ) gsmisc.$(OBJ)
  1232. LIB6s=gspaint.$(OBJ) gsparam.$(OBJ) gspath.$(OBJ) gsstate.$(OBJ) gsutil.$(OBJ)
  1233. LIB1x=gxacpath.$(OBJ) gxbcache.$(OBJ)
  1234. LIB2x=gxccache.$(OBJ) gxccman.$(OBJ) gxcht.$(OBJ) gxcmap.$(OBJ) gxcpath.$(OBJ)
  1235. LIB3x=gxdcconv.$(OBJ) gxdcolor.$(OBJ) gxdither.$(OBJ) gxfill.$(OBJ) gxht.$(OBJ)
  1236. LIB4x=gximage.$(OBJ) gximage0.$(OBJ) gximage1.$(OBJ) gximage2.$(OBJ)
  1237. LIB5x=gxpaint.$(OBJ) gxpath.$(OBJ) gxpath2.$(OBJ) gxpcopy.$(OBJ)
  1238. LIB6x=gxpdash.$(OBJ) gxpflat.$(OBJ) gxsample.$(OBJ) gxstroke.$(OBJ)
  1239. LIB1d=gdevabuf.$(OBJ) gdevddrw.$(OBJ) gdevdflt.$(OBJ) gdevnfwd.$(OBJ)
  1240. LIB2d=gdevmem.$(OBJ) gdevm1.$(OBJ) gdevm2.$(OBJ) gdevm4.$(OBJ) gdevm8.$(OBJ)
  1241. LIB3d=gdevm16.$(OBJ) gdevm24.$(OBJ) gdevm32.$(OBJ) gdevmpla.$(OBJ)
  1242. LIBs=$(LIB1s) $(LIB2s) $(LIB3s) $(LIB4s) $(LIB5s) $(LIB6s)
  1243. LIBx=$(LIB1x) $(LIB2x) $(LIB3x) $(LIB4x) $(LIB5x) $(LIB6x)
  1244. LIBd=$(LIB1d) $(LIB2d) $(LIB3d)
  1245. LIB_ALL=$(LIBs) $(LIBx) $(LIBd)
  1246. libs.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBs)
  1247.     $(EXP)echogs -w libs.dev $(LIB1s)
  1248.     $(EXP)echogs -a libs.dev $(LIB2s)
  1249.     $(EXP)echogs -a libs.dev $(LIB3s)
  1250.     $(EXP)echogs -a libs.dev $(LIB4s)
  1251.     $(EXP)echogs -a libs.dev $(LIB5s)
  1252.     $(EXP)echogs -a libs.dev $(LIB6s)
  1253.     $(ADDMOD) libs -init gscolor
  1254.  
  1255. libx.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBx)
  1256.     $(EXP)echogs -w libx.dev $(LIB1x)
  1257.     $(EXP)echogs -a libx.dev $(LIB2x)
  1258.     $(EXP)echogs -a libx.dev $(LIB3x)
  1259.     $(EXP)echogs -a libx.dev $(LIB4x)
  1260.     $(EXP)echogs -a libx.dev $(LIB5x)
  1261.     $(EXP)echogs -a libx.dev $(LIB6x)
  1262.     $(ADDMOD) libx -init gximage1 gximage2
  1263.  
  1264. libd.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBd)
  1265.     $(EXP)echogs -w libd.dev $(LIB1d)
  1266.     $(EXP)echogs -a libd.dev $(LIB2d)
  1267.     $(EXP)echogs -a libd.dev $(LIB3d)
  1268.  
  1269. # roplib shouldn't be required....
  1270. libcore.dev: $(LIB_MAK) $(ECHOGS_XE)\
  1271.   libs.dev libx.dev libd.dev iscale.dev roplib.dev
  1272.     $(SETMOD) libcore
  1273.     $(ADDMOD) libcore -dev nullpage
  1274.     $(ADDMOD) libcore -include libs libx libd iscale roplib
  1275.  
  1276. # ---------------- Stream support ---------------- #
  1277. # Currently the only thing in the library that uses this is clists.
  1278.  
  1279. stream_h=stream.h $(scommon_h)
  1280.  
  1281. stream.$(OBJ): stream.c $(AK) $(stdio__h) $(memory__h) \
  1282.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1283.  
  1284. # ---------------- File streams ---------------- #
  1285. # Currently only the high-level drivers use these, but more drivers will
  1286. # probably use them eventually.
  1287.  
  1288. sfile_=sfx$(FILE_IMPLEMENTATION).$(OBJ)
  1289. sfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(sfile_)
  1290.     $(SETMOD) sfile $(sfile_)
  1291.  
  1292. sfxstdio.$(OBJ): sfxstdio.c $(AK) $(stdio__h) $(memory__h) \
  1293.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1294.  
  1295. sfxfd.$(OBJ): sfxfd.c $(AK) $(stdio__h) $(errno__h) $(memory__h) \
  1296.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1297.  
  1298. sfxboth.$(OBJ): sfxboth.c sfxstdio.c sfxfd.c
  1299.  
  1300. # ---------------- CCITTFax filters ---------------- #
  1301. # These are used by clists, some drivers, and Level 2 in general.
  1302.  
  1303. cfe_=scfe.$(OBJ) scfetab.$(OBJ) shc.$(OBJ)
  1304. cfe.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfe_)
  1305.     $(SETMOD) cfe $(cfe_)
  1306.  
  1307. scfe.$(OBJ): scfe.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1308.   $(scf_h) $(strimpl_h) $(scfx_h)
  1309.  
  1310. scfetab.$(OBJ): scfetab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1311.  
  1312. shc.$(OBJ): shc.c $(AK) $(std_h) $(scommon_h) $(shc_h)
  1313.  
  1314. cfd_=scfd.$(OBJ) scfdtab.$(OBJ)
  1315. cfd.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfd_)
  1316.     $(SETMOD) cfd $(cfd_)
  1317.  
  1318. scfd.$(OBJ): scfd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1319.   $(scf_h) $(strimpl_h) $(scfx_h)
  1320.  
  1321. scfdtab.$(OBJ): scfdtab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1322.  
  1323. # ---------------- DCT (JPEG) filters ---------------- #
  1324. # These are used by Level 2, and by the JPEG-writing driver.
  1325.  
  1326. # Common code
  1327.  
  1328. sdctc_=sdctc.$(OBJ) sjpegc.$(OBJ)
  1329.  
  1330. sdctc.$(OBJ): sdctc.c $(AK) $(stdio__h)\
  1331.  $(sdct_h) $(strimpl_h)\
  1332.  jpeglib.h
  1333.  
  1334. sjpegc.$(OBJ): sjpegc.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1335.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1336.  jerror.h jpeglib.h
  1337.  
  1338. # Encoding (compression)
  1339.  
  1340. sdcte_=$(sdctc_) sdcte.$(OBJ) sjpege.$(OBJ)
  1341. sdcte.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdcte_) jpege.dev
  1342.     $(SETMOD) sdcte $(sdcte_)
  1343.     $(ADDMOD) sdcte -include jpege
  1344.  
  1345. sdcte.$(OBJ): sdcte.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1346.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1347.   jerror.h jpeglib.h
  1348.  
  1349. sjpege.$(OBJ): sjpege.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1350.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1351.  jerror.h jpeglib.h
  1352.  
  1353. # Decoding (decompression)
  1354.  
  1355. sdctd_=$(sdctc_) sdctd.$(OBJ) sjpegd.$(OBJ)
  1356. sdctd.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdctd_) jpegd.dev
  1357.     $(SETMOD) sdctd $(sdctd_)
  1358.     $(ADDMOD) sdctd -include jpegd
  1359.  
  1360. sdctd.$(OBJ): sdctd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1361.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1362.   jerror.h jpeglib.h
  1363.  
  1364. sjpegd.$(OBJ): sjpegd.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1365.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h)\
  1366.  jerror.h jpeglib.h
  1367.  
  1368. # ---------------- LZW filters ---------------- #
  1369. # These are used by Level 2 in general.
  1370.  
  1371. slzwe_=slzwce
  1372. #slzwe_=slzwe
  1373. lzwe_=$(slzwe_).$(OBJ) slzwc.$(OBJ)
  1374. lzwe.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwe_)
  1375.     $(SETMOD) lzwe $(lzwe_)
  1376.  
  1377. # We need slzwe.dev as a synonym for lzwe.dev for BAND_LIST_STORAGE = memory.
  1378. slzwe.dev: lzwe.dev
  1379.     $(CP_) lzwe.dev slzwe.dev
  1380.  
  1381. slzwce.$(OBJ): slzwce.c $(AK) $(stdio__h) $(gdebug_h)\
  1382.   $(slzwx_h) $(strimpl_h)
  1383.  
  1384. slzwe.$(OBJ): slzwe.c $(AK) $(stdio__h) $(gdebug_h)\
  1385.   $(slzwx_h) $(strimpl_h)
  1386.  
  1387. slzwc.$(OBJ): slzwc.c $(AK) $(std_h)\
  1388.   $(slzwx_h) $(strimpl_h)
  1389.  
  1390. lzwd_=slzwd.$(OBJ) slzwc.$(OBJ)
  1391. lzwd.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwd_)
  1392.     $(SETMOD) lzwd $(lzwd_)
  1393.  
  1394. # We need slzwd.dev as a synonym for lzwd.dev for BAND_LIST_STORAGE = memory.
  1395. slzwd.dev: lzwd.dev
  1396.     $(CP_) lzwd.dev slzwd.dev
  1397.  
  1398. slzwd.$(OBJ): slzwd.c $(AK) $(stdio__h) $(gdebug_h)\
  1399.   $(slzwx_h) $(strimpl_h)
  1400.  
  1401. # ---------------- PCX decoding filter ---------------- #
  1402. # This is an adhoc filter not used by anything in the standard configuration.
  1403.  
  1404. pcxd_=spcxd.$(OBJ)
  1405. pcxd.dev: $(LIB_MAK) $(ECHOGS_XE) $(pcxd_)
  1406.     $(SETMOD) pcxd $(pcxd_)
  1407.  
  1408. spcxd.$(OBJ): spcxd.c $(AK) $(stdio__h) $(memory__h) \
  1409.   $(spcxx_h) $(strimpl_h)
  1410.  
  1411. # ---------------- Pixel-difference filters ---------------- #
  1412. # The Predictor facility of the LZW and Flate filters uses these.
  1413.  
  1414. pdiff_=spdiff.$(OBJ)
  1415. pdiff.dev: $(LIB_MAK) $(ECHOGS_XE) $(pdiff_)
  1416.     $(SETMOD) pdiff $(pdiff_)
  1417.  
  1418. spdiff.$(OBJ): spdiff.c $(AK) $(stdio__h)\
  1419.  $(spdiffx_h) $(strimpl_h)
  1420.  
  1421. # ---------------- PNG pixel prediction filters ---------------- #
  1422. # The Predictor facility of the LZW and Flate filters uses these.
  1423.  
  1424. pngp_=spngp.$(OBJ)
  1425. pngp.dev: $(LIB_MAK) $(ECHOGS_XE) $(pngp_)
  1426.     $(SETMOD) pngp $(pngp_)
  1427.  
  1428. spngp.$(OBJ): spngp.c $(AK) $(memory__h)\
  1429.   $(spngpx_h) $(strimpl_h)
  1430.  
  1431. # ---------------- RunLength filters ---------------- #
  1432. # These are used by clists and also by Level 2 in general.
  1433.  
  1434. rle_=srle.$(OBJ)
  1435. rle.dev: $(LIB_MAK) $(ECHOGS_XE) $(rle_)
  1436.     $(SETMOD) rle $(rle_)
  1437.  
  1438. srle.$(OBJ): srle.c $(AK) $(stdio__h) $(memory__h) \
  1439.   $(srlx_h) $(strimpl_h)
  1440.  
  1441. rld_=srld.$(OBJ)
  1442. rld.dev: $(LIB_MAK) $(ECHOGS_XE) $(rld_)
  1443.     $(SETMOD) rld $(rld_)
  1444.  
  1445. srld.$(OBJ): srld.c $(AK) $(stdio__h) $(memory__h) \
  1446.   $(srlx_h) $(strimpl_h)
  1447.  
  1448. # ---------------- String encoding/decoding filters ---------------- #
  1449. # These are used by the PostScript and PDF writers, and also by the
  1450. # PostScript interpreter.
  1451.  
  1452. scantab.$(OBJ): scantab.c $(AK) $(stdpre_h)\
  1453.  $(scanchar_h) $(scommon_h)
  1454.  
  1455. sfilter2.$(OBJ): sfilter2.c $(AK) $(memory__h) $(stdio__h)\
  1456.  $(sa85x_h) $(scanchar_h) $(sbtx_h) $(strimpl_h)
  1457.  
  1458. sstring.$(OBJ): sstring.c $(AK) $(stdio__h) $(memory__h) $(string__h)\
  1459.  $(scanchar_h) $(sstring_h) $(strimpl_h)
  1460.  
  1461. # ---------------- zlib filters ---------------- #
  1462. # These are used by clists and are also available as filters.
  1463.  
  1464. szlibc_=szlibc.$(OBJ)
  1465.  
  1466. szlibc.$(OBJ): szlibc.c $(AK) $(std_h) \
  1467.   $(gsmemory_h) $(gsstruct_h) $(gstypes_h) $(strimpl_h) $(szlibx_h)
  1468.     $(CCCZ) szlibc.c
  1469.  
  1470. szlibe_=$(szlibc_) szlibe.$(OBJ)
  1471. szlibe.dev: $(LIB_MAK) $(ECHOGS_XE) zlibe.dev $(szlibe_)
  1472.     $(SETMOD) szlibe $(szlibe_)
  1473.     $(ADDMOD) szlibe -include zlibe
  1474.  
  1475. szlibe.$(OBJ): szlibe.c $(AK) $(std_h) \
  1476.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1477.     $(CCCZ) szlibe.c
  1478.  
  1479. szlibd_=$(szlibc_) szlibd.$(OBJ)
  1480. szlibd.dev: $(LIB_MAK) $(ECHOGS_XE) zlibd.dev $(szlibd_)
  1481.     $(SETMOD) szlibd $(szlibd_)
  1482.     $(ADDMOD) szlibd -include zlibd
  1483.  
  1484. szlibd.$(OBJ): szlibd.c $(AK) $(std_h) \
  1485.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1486.     $(CCCZ) szlibd.c
  1487.  
  1488. # ---------------- Command lists ---------------- #
  1489.  
  1490. gxcldev_h=gxcldev.h $(gxclist_h) $(gsropt_h) $(gxht_h) $(gxtmap_h) $(gxdht_h)\
  1491.   $(strimpl_h) $(scfx_h) $(srlx_h)
  1492. gxclpage_h=gxclpage.h $(gxclio_h)
  1493. gxclpath_h=gxclpath.h $(gxfixed_h)
  1494.  
  1495. # Command list package.  Currently the higher-level facilities are required,
  1496. # but eventually they will be optional.
  1497. clist.dev: $(LIB_MAK) $(ECHOGS_XE) clbase.dev clpath.dev
  1498.     $(SETMOD) clist -include clbase clpath
  1499.  
  1500. # Base command list facility.
  1501. clbase1_=gxclist.$(OBJ) gxclbits.$(OBJ) gxclpage.$(OBJ)
  1502. clbase2_=gxclread.$(OBJ) gxclrect.$(OBJ) stream.$(OBJ)
  1503. clbase_=$(clbase1_) $(clbase2_)
  1504. clbase.dev: $(LIB_MAK) $(ECHOGS_XE) $(clbase_) cl$(BAND_LIST_STORAGE).dev \
  1505.   cfe.dev cfd.dev rle.dev rld.dev
  1506.     $(SETMOD) clbase $(clbase1_)
  1507.     $(ADDMOD) clbase -obj $(clbase2_)
  1508.     $(ADDMOD) clbase -include cl$(BAND_LIST_STORAGE) cfe cfd rle rld
  1509.  
  1510. gdevht_h=gdevht.h $(gzht_h)
  1511.  
  1512. gdevht.$(OBJ): gdevht.c $(GXERR) \
  1513.   $(gdevht_h) $(gxdcconv_h) $(gxdcolor_h) $(gxdevice_h) $(gxdither_h)
  1514.  
  1515. gxclist.$(OBJ): gxclist.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1516.  $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1517.  
  1518. gxclbits.$(OBJ): gxclbits.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1519.  $(gsbitops_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h) $(gxfmap_h)
  1520.  
  1521. gxclpage.$(OBJ): gxclpage.c $(AK)\
  1522.  $(gdevprn_h) $(gxcldev_h) $(gxclpage_h)
  1523.  
  1524. # (gxclread shouldn't need gxclpath.h)
  1525. gxclread.$(OBJ): gxclread.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1526.  $(gdevht_h)\
  1527.  $(gsbitops_h) $(gscoord_h) $(gsdevice_h) $(gsstate_h)\
  1528.  $(gxcldev_h) $(gxclpath_h) $(gxcmap_h) $(gxcspace_h) $(gxdcolor_h)\
  1529.  $(gxdevice_h) $(gxdevmem_h)\
  1530.  $(gxhttile_h) $(gxpaint_h) $(gzacpath_h) $(gzcpath_h) $(gzpath_h)\
  1531.  $(stream_h) $(strimpl_h)
  1532.  
  1533. gxclrect.$(OBJ): gxclrect.c $(GXERR)\
  1534.  $(gsutil_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1535.  
  1536. # Higher-level command list facilities.
  1537. clpath_=gxclimag.$(OBJ) gxclpath.$(OBJ)
  1538. clpath.dev: $(LIB_MAK) $(ECHOGS_XE) $(clpath_) psl2cs.dev
  1539.     $(SETMOD) clpath $(clpath_)
  1540.     $(ADDMOD) clpath -include psl2cs
  1541.     $(ADDMOD) clpath -init climag clpath
  1542.  
  1543. gxclimag.$(OBJ): gxclimag.c $(GXERR) $(math__h) $(memory__h)\
  1544.  $(gscspace_h)\
  1545.  $(gxarith_h) $(gxcldev_h) $(gxclpath_h) $(gxdevice_h) $(gxdevmem_h)\
  1546.  $(gxfmap_h)\
  1547.  $(siscale_h) $(strimpl_h)
  1548.  
  1549. gxclpath.$(OBJ): gxclpath.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1550.  $(gxcldev_h) $(gxclpath_h) $(gxcolor2_h) $(gxdevice_h) $(gxdevmem_h)\
  1551.  $(gxpaint_h) \
  1552.  $(gzcpath_h) $(gzpath_h)
  1553.  
  1554. # Implement band lists on files.
  1555.  
  1556. clfile_=gxclfile.$(OBJ)
  1557. clfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(clfile_)
  1558.     $(SETMOD) clfile $(clfile_)
  1559.  
  1560. gxclfile.$(OBJ): gxclfile.c $(stdio__h) $(string__h) \
  1561.   $(gp_h) $(gsmemory_h) $(gserror_h) $(gserrors_h) $(gxclio_h)
  1562.  
  1563. # Implement band lists in memory (RAM).
  1564.  
  1565. clmemory_=gxclmem.$(OBJ) gxcl$(BAND_LIST_COMPRESSOR).$(OBJ)
  1566. clmemory.dev: $(LIB_MAK) $(ECHOGS_XE) $(clmemory_) s$(BAND_LIST_COMPRESSOR)e.dev s$(BAND_LIST_COMPRESSOR)d.dev
  1567.     $(SETMOD) clmemory $(clmemory_)
  1568.     $(ADDMOD) clmemory -include s$(BAND_LIST_COMPRESSOR)e s$(BAND_LIST_COMPRESSOR)d
  1569.     $(ADDMOD) clmemory -init cl_$(BAND_LIST_COMPRESSOR)
  1570.  
  1571. gxclmem_h=gxclmem.h $(gxclio_h) $(strimpl_h)
  1572.  
  1573. gxclmem.$(OBJ): gxclmem.c $(GXERR) $(LIB_MAK) $(memory__h) \
  1574.   $(gxclmem_h)
  1575.  
  1576. # Implement the compression method for RAM-based band lists.
  1577.  
  1578. gxcllzw.$(OBJ): gxcllzw.c $(std_h)\
  1579.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(slzwx_h)
  1580.  
  1581. gxclzlib.$(OBJ): gxclzlib.c $(std_h)\
  1582.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(szlibx_h)
  1583.     $(CCCZ) gxclzlib.c
  1584.  
  1585. # ---------------- Page devices ---------------- #
  1586. # We include this here, rather than in devs.mak, because it is more like
  1587. # a feature than a simple device.
  1588.  
  1589. page_=gdevprn.$(OBJ)
  1590. page.dev: $(LIB_MAK) $(ECHOGS_XE) $(page_) clist.dev
  1591.     $(SETMOD) page $(page_)
  1592.     $(ADDMOD) page -include clist
  1593.  
  1594. gdevprn.$(OBJ): gdevprn.c $(ctype__h) \
  1595.   $(gdevprn_h) $(gp_h) $(gsparam_h) $(gxclio_h)
  1596.  
  1597. # ---------------- Vector devices ---------------- #
  1598. # We include this here for the same reasons as page.dev.
  1599.  
  1600. gdevvec_h=gdevvec.h $(gdevbbox_h) $(gsropt_h) $(gxdevice_h) $(gxistate_h) $(stream_h)
  1601.  
  1602. vector_=gdevvec.$(OBJ)
  1603. vector.dev: $(LIB_MAK) $(ECHOGS_XE) $(vector_) bbox.dev
  1604.     $(SETMOD) vector $(vector_)
  1605.     $(ADDMOD) vector -include bbox
  1606.  
  1607. gdevvec.$(OBJ): gdevvec.c $(GXERR) $(math__h) $(memory__h) $(string__h)\
  1608.  $(gdevvec_h) $(gp_h) $(gscspace_h) $(gsparam_h) $(gsutil_h)\
  1609.  $(gxdcolor_h) $(gxfixed_h) $(gxpaint_h)\
  1610.  $(gzcpath_h) $(gzpath_h)
  1611.  
  1612. # ---------------- Image scaling filter ---------------- #
  1613.  
  1614. iscale_=siscale.$(OBJ)
  1615. iscale.dev: $(LIB_MAK) $(ECHOGS_XE) $(iscale_)
  1616.     $(SETMOD) iscale $(iscale_)
  1617.  
  1618. siscale.$(OBJ): siscale.c $(AK) $(math__h) $(memory__h) $(stdio__h) \
  1619.   $(siscale_h) $(strimpl_h)
  1620.  
  1621. # ---------------- RasterOp et al ---------------- #
  1622. # Currently this module is required, but it should be optional.
  1623.  
  1624. roplib_=gdevmrop.$(OBJ) gsrop.$(OBJ) gsroptab.$(OBJ)
  1625. roplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(roplib_)
  1626.     $(SETMOD) roplib $(roplib_)
  1627.     $(ADDMOD) roplib -init roplib
  1628.  
  1629. gdevrun.$(OBJ): gdevrun.c $(GXERR) $(memory__h) \
  1630.   $(gxdevice_h) $(gxdevmem_h)
  1631.  
  1632. gdevmrop.$(OBJ): gdevmrop.c $(GXERR) $(memory__h) \
  1633.   $(gsbittab_h) $(gsropt_h) \
  1634.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxdevrop_h) \
  1635.   $(gdevmrop_h)
  1636.  
  1637. gsrop.$(OBJ): gsrop.c $(GXERR) \
  1638.   $(gsrop_h) $(gzstate_h)
  1639.  
  1640. gsroptab.$(OBJ): gsroptab.c $(stdpre_h) $(gsropt_h)
  1641.     $(CCLEAF) gsroptab.c
  1642.  
  1643. # -------- Composite (PostScript Type 0) font support -------- #
  1644.  
  1645. cmaplib_=gsfcmap.$(OBJ)
  1646. cmaplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmaplib_)
  1647.     $(SETMOD) cmaplib $(cmaplib_)
  1648.  
  1649. gsfcmap.$(OBJ): gsfcmap.c $(GXERR)\
  1650.  $(gsstruct_h) $(gxfcmap_h)
  1651.  
  1652. psf0lib_=gschar0.$(OBJ) gsfont0.$(OBJ)
  1653. psf0lib.dev: $(LIB_MAK) $(ECHOGS_XE) cmaplib.dev $(psf0lib_)
  1654.     $(SETMOD) psf0lib $(psf0lib_)
  1655.     $(ADDMOD) psf0lib -include cmaplib
  1656.  
  1657. gschar0.$(OBJ): gschar0.c $(GXERR) $(memory__h)\
  1658.  $(gsstruct_h) $(gxfixed_h) $(gxdevice_h) $(gxdevmem_h)\
  1659.  $(gsfcmap_h) $(gxfont_h) $(gxfont0_h) $(gxchar_h)
  1660.  
  1661. gsfont0.$(OBJ): gsfont0.c $(GXERR) $(memory__h)\
  1662.  $(gsmatrix_h) $(gsstruct_h) $(gxfixed_h) $(gxdevmem_h) $(gxfcache_h)\
  1663.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxdevice_h)
  1664.  
  1665. # ---------------- Pattern color ---------------- #
  1666.  
  1667. patlib_=gspcolor.$(OBJ) gxclip2.$(OBJ) gxpcmap.$(OBJ)
  1668. patlib.dev: $(LIB_MAK) $(ECHOGS_XE) cmyklib.dev psl2cs.dev $(patlib_)
  1669.     $(SETMOD) patlib -include cmyklib psl2cs
  1670.     $(ADDMOD) patlib -obj $(patlib_)
  1671.  
  1672. gspcolor.$(OBJ): gspcolor.c $(GXERR) $(math__h) \
  1673.   $(gsimage_h) $(gspath_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1674.   $(gxarith_h) $(gxcolor2_h) $(gxcoord_h) $(gxclip2_h) $(gxcspace_h) \
  1675.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) \
  1676.   $(gxfixed_h) $(gxmatrix_h) $(gxpath_h) $(gxpcolor_h) $(gzstate_h)
  1677.  
  1678. gxclip2.$(OBJ): gxclip2.c $(GXERR) $(memory__h) \
  1679.   $(gsstruct_h) $(gxclip2_h) $(gxdevice_h) $(gxdevmem_h)
  1680.  
  1681. gxpcmap.$(OBJ): gxpcmap.c $(GXERR) $(math__h) $(memory__h)\
  1682.  $(gsstruct_h) $(gsutil_h)\
  1683.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  1684.  $(gxfixed_h) $(gxmatrix_h) $(gxpcolor_h)\
  1685.  $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1686.  
  1687. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  1688.  
  1689. type1lib_=gxtype1.$(OBJ) gxhint1.$(OBJ) gxhint2.$(OBJ) gxhint3.$(OBJ)
  1690.  
  1691. gscrypt1_h=gscrypt1.h
  1692. gstype1_h=gstype1.h
  1693. gxfont1_h=gxfont1.h
  1694. gxop1_h=gxop1.h
  1695. gxtype1_h=gxtype1.h $(gscrypt1_h) $(gstype1_h) $(gxop1_h)
  1696.  
  1697. gxtype1.$(OBJ): gxtype1.c $(GXERR) $(math__h)\
  1698.  $(gsccode_h) $(gsline_h) $(gsstruct_h)\
  1699.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h)\
  1700.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1701.  $(gzpath_h)
  1702.  
  1703. gxhint1.$(OBJ): gxhint1.c $(GXERR)\
  1704.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1705.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1706.  
  1707. gxhint2.$(OBJ): gxhint2.c $(GXERR) $(memory__h)\
  1708.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1709.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1710.  
  1711. gxhint3.$(OBJ): gxhint3.c $(GXERR) $(math__h)\
  1712.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1713.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)\
  1714.  $(gzpath_h)
  1715.  
  1716. # Type 1 charstrings
  1717.  
  1718. psf1lib_=gstype1.$(OBJ)
  1719. psf1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf1lib_) $(type1lib_)
  1720.     $(SETMOD) psf1lib $(psf1lib_)
  1721.     $(ADDMOD) psf1lib $(type1lib_)
  1722.     $(ADDMOD) psf1lib -init gstype1
  1723.  
  1724. gstype1.$(OBJ): gstype1.c $(GXERR) $(math__h) $(memory__h)\
  1725.  $(gsstruct_h)\
  1726.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1727.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1728.  $(gzpath_h)
  1729.  
  1730. # Type 2 charstrings
  1731.  
  1732. psf2lib_=gstype2.$(OBJ)
  1733. psf2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf2lib_) $(type1lib_)
  1734.     $(SETMOD) psf2lib $(psf2lib_)
  1735.     $(ADDMOD) psf2lib $(type1lib_)
  1736.     $(ADDMOD) psf2lib -init gstype2
  1737.  
  1738. gstype2.$(OBJ): gstype2.c $(GXERR) $(math__h) $(memory__h)\
  1739.  $(gsstruct_h)\
  1740.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1741.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1742.  $(gzpath_h)
  1743.  
  1744. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  1745.  
  1746. ttflib_=gstype42.$(OBJ)
  1747. ttflib.dev: $(LIB_MAK) $(ECHOGS_XE) $(ttflib_)
  1748.     $(SETMOD) ttflib $(ttflib_)
  1749.  
  1750. gxfont42_h=gxfont42.h
  1751.  
  1752. gstype42.$(OBJ): gstype42.c $(GXERR) $(memory__h) \
  1753.   $(gsccode_h) $(gsmatrix_h) $(gsstruct_h) \
  1754.   $(gxfixed_h) $(gxfont_h) $(gxfont42_h) $(gxistate_h) $(gxpath_h)
  1755.  
  1756. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  1757.  
  1758. cmyklib_=gscolor1.$(OBJ) gsht1.$(OBJ)
  1759. cmyklib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmyklib_)
  1760.     $(SETMOD) cmyklib $(cmyklib_)
  1761.     $(ADDMOD) cmyklib -init gscolor1
  1762.  
  1763. gscolor1.$(OBJ): gscolor1.c $(GXERR) \
  1764.   $(gsccolor_h) $(gscolor1_h) $(gsstruct_h) $(gsutil_h) \
  1765.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) \
  1766.   $(gzstate_h)
  1767.  
  1768. gsht1.$(OBJ): gsht1.c $(GXERR) $(memory__h)\
  1769.  $(gsstruct_h) $(gsutil_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1770.  
  1771. colimlib_=gximage3.$(OBJ)
  1772. colimlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(colimlib_)
  1773.     $(SETMOD) colimlib $(colimlib_)
  1774.     $(ADDMOD) colimlib -init gximage3
  1775.  
  1776. gximage3.$(OBJ): gximage3.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1777.  $(gsccolor_h) $(gspaint_h)\
  1778.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcconv_h) $(gxdcolor_h)\
  1779.  $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h)\
  1780.  $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1781.  $(gzpath_h) $(gzstate_h)
  1782.  
  1783. # ---------------- HSB color ---------------- #
  1784.  
  1785. hsblib_=gshsb.$(OBJ)
  1786. hsblib.dev: $(LIB_MAK) $(ECHOGS_XE) $(hsblib_)
  1787.     $(SETMOD) hsblib $(hsblib_)
  1788.  
  1789. gshsb.$(OBJ): gshsb.c $(GX) \
  1790.   $(gscolor_h) $(gshsb_h) $(gxfrac_h)
  1791.  
  1792. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  1793.  
  1794. path1lib_=gspath1.$(OBJ)
  1795. path1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(path1lib_)
  1796.     $(SETMOD) path1lib $(path1lib_)
  1797.  
  1798. gspath1.$(OBJ): gspath1.c $(GXERR) $(math__h) \
  1799.   $(gscoord_h) $(gspath_h) $(gsstruct_h) \
  1800.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h) \
  1801.   $(gzstate_h) $(gzpath_h)
  1802.  
  1803. # --------------- Level 2 color space and color image support --------------- #
  1804.  
  1805. psl2cs_=gscolor2.$(OBJ)
  1806. psl2cs.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2cs_)
  1807.     $(SETMOD) psl2cs $(psl2cs_)
  1808.  
  1809. gscolor2.$(OBJ): gscolor2.c $(GXERR) \
  1810.   $(gxarith_h) $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gxmatrix_h) \
  1811.   $(gzstate_h)
  1812.  
  1813. psl2lib_=gximage4.$(OBJ) gximage5.$(OBJ)
  1814. psl2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2lib_) colimlib.dev psl2cs.dev
  1815.     $(SETMOD) psl2lib $(psl2lib_)
  1816.     $(ADDMOD) psl2lib -init gximage4 gximage5
  1817.     $(ADDMOD) psl2lib -include colimlib psl2cs
  1818.  
  1819. gximage4.$(OBJ): gximage4.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1820.  $(gsccolor_h) $(gspaint_h)\
  1821.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1822.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1823.  $(gxmatrix_h)\
  1824.  $(gzpath_h)
  1825.  
  1826. gximage5.$(OBJ): gximage5.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1827.  $(gsccolor_h) $(gspaint_h)\
  1828.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1829.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1830.  $(gxmatrix_h)\
  1831.  $(gzpath_h)
  1832.  
  1833. # ---------------- Display Postscript / Level 2 support ---------------- #
  1834.  
  1835. dps2lib_=gsdps1.$(OBJ)
  1836. dps2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(dps2lib_)
  1837.     $(SETMOD) dps2lib $(dps2lib_)
  1838.  
  1839. gsdps1.$(OBJ): gsdps1.c $(GXERR) $(math__h)\
  1840.  $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gspath2_h)\
  1841.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1842.  
  1843. # ---------------- CIE color ---------------- #
  1844.  
  1845. cielib_=gscie.$(OBJ) gxctable.$(OBJ)
  1846. cielib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cielib_)
  1847.     $(SETMOD) cielib $(cielib_)
  1848.  
  1849. gscie.$(OBJ): gscie.c $(GXERR) $(math__h) \
  1850.   $(gscie_h) $(gscolor2_h) $(gsmatrix_h) $(gsstruct_h) \
  1851.   $(gxarith_h) $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gzstate_h)
  1852.  
  1853. gxctable.$(OBJ): gxctable.c $(GX) \
  1854.   $(gxfixed_h) $(gxfrac_h) $(gxctable_h)
  1855.  
  1856. # ---------------- Separation colors ---------------- #
  1857.  
  1858. seprlib_=gscsepr.$(OBJ)
  1859. seprlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(seprlib_)
  1860.     $(SETMOD) seprlib $(seprlib_)
  1861.  
  1862. gscsepr.$(OBJ): gscsepr.c $(GXERR)\
  1863.  $(gscsepr_h) $(gsmatrix_h) $(gsrefct_h)\
  1864.  $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gzstate_h)
  1865.  
  1866. # ----------------------- Platform-specific modules ----------------------- #
  1867. # Platform-specific code doesn't really belong here: this is code that is
  1868. # shared among multiple platforms.
  1869.  
  1870. # Frame buffer implementations.
  1871.  
  1872. gp_nofb.$(OBJ): gp_nofb.c $(GX) \
  1873.   $(gp_h) $(gxdevice_h)
  1874.  
  1875. gp_dosfb.$(OBJ): gp_dosfb.c $(AK) $(malloc__h) $(memory__h)\
  1876.  $(gx_h) $(gp_h) $(gserrors_h) $(gxdevice_h)
  1877.  
  1878. # MS-DOS file system, also used by Desqview/X.
  1879. gp_dosfs.$(OBJ): gp_dosfs.c $(AK) $(dos__h) $(gp_h) $(gx_h)
  1880.  
  1881. # MS-DOS file enumeration, *not* used by Desqview/X.
  1882. gp_dosfe.$(OBJ): gp_dosfe.c $(AK) $(stdio__h) $(memory__h) $(string__h) \
  1883.   $(dos__h) $(gstypes_h) $(gsmemory_h) $(gsstruct_h) $(gp_h) $(gsutil_h)
  1884.  
  1885. # Other MS-DOS facilities.
  1886. gp_msdos.$(OBJ): gp_msdos.c $(AK) $(dos__h) $(stdio__h) $(string__h)\
  1887.  $(gsmemory_h) $(gstypes_h) $(gp_h)
  1888.  
  1889. # Unix(-like) file system, also used by Desqview/X.
  1890. gp_unifs.$(OBJ): gp_unifs.c $(AK) $(memory__h) $(string__h) $(gx_h) $(gp_h) \
  1891.   $(gsstruct_h) $(gsutil_h) $(stat__h) $(dirent__h)
  1892.  
  1893. # Unix(-like) file name syntax, *not* used by Desqview/X.
  1894. gp_unifn.$(OBJ): gp_unifn.c $(AK) $(gx_h) $(gp_h)
  1895.  
  1896. # ----------------------------- Main program ------------------------------ #
  1897.  
  1898. # Main program for library testing
  1899.  
  1900. gslib.$(OBJ): gslib.c $(AK) $(math__h) \
  1901.   $(gx_h) $(gp_h) $(gserrors_h) $(gsmatrix_h) $(gsstate_h) $(gscspace_h) \
  1902.   $(gscdefs_h) $(gscolor2_h) $(gscoord_h) $(gslib_h) $(gsparam_h) \
  1903.   $(gspaint_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1904.   $(gxalloc_h) $(gxdevice_h)
  1905. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  1906. # This file is part of Aladdin Ghostscript.
  1907. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  1908. # or distributor accepts any responsibility for the consequences of using it,
  1909. # or for whether it serves any particular purpose or works at all, unless he
  1910. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  1911. # License (the "License") for full details.
  1912. # Every copy of Aladdin Ghostscript must include a copy of the License,
  1913. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  1914. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  1915. # under certain conditions described in the License.  Among other things, the
  1916. # License requires that the copyright notice and this notice be preserved on
  1917. # all copies.
  1918.  
  1919. # (Platform-independent) makefile for language interpreters.
  1920. # See the end of gs.mak for where this fits into the build process.
  1921.  
  1922. # Define the name of this makefile.
  1923. INT_MAK=int.mak
  1924.  
  1925. # ======================== Interpreter support ======================== #
  1926.  
  1927. # This is support code for all interpreters, not just PostScript and PDF.
  1928. # It knows about the PostScript data types, but isn't supposed to
  1929. # depend on anything outside itself.
  1930.  
  1931. errors_h=errors.h
  1932. idebug_h=idebug.h
  1933. idict_h=idict.h
  1934. igc_h=igc.h
  1935. igcstr_h=igcstr.h
  1936. iname_h=iname.h
  1937. inamedef_h=inamedef.h $(gconfigv_h) $(iname_h)
  1938. ipacked_h=ipacked.h
  1939. iref_h=iref.h
  1940. isave_h=isave.h
  1941. isstate_h=isstate.h
  1942. istruct_h=istruct.h $(gsstruct_h)
  1943. iutil_h=iutil.h
  1944. ivmspace_h=ivmspace.h $(gsgc_h)
  1945. opdef_h=opdef.h
  1946. # Nested include files
  1947. ghost_h=ghost.h $(gx_h) $(iref_h)
  1948. imemory_h=imemory.h $(gsalloc_h) $(ivmspace_h)
  1949. ialloc_h=ialloc.h $(imemory_h)
  1950. iastruct_h=iastruct.h $(gxobj_h) $(ialloc_h)
  1951. iastate_h=iastate.h $(gxalloc_h) $(ialloc_h) $(istruct_h)
  1952. store_h=store.h $(ialloc_h)
  1953.  
  1954. GH=$(AK) $(ghost_h)
  1955.  
  1956. isupport1_=ialloc.$(OBJ) igc.$(OBJ) igcref.$(OBJ) igcstr.$(OBJ)
  1957. isupport2_=ilocate.$(OBJ) iname.$(OBJ) isave.$(OBJ)
  1958. isupport_=$(isupport1_) $(isupport2_)
  1959. isupport.dev: $(INT_MAK) $(ECHOGS_XE) $(isupport_)
  1960.     $(SETMOD) isupport $(isupport1_)
  1961.     $(ADDMOD) isupport -obj $(isupport2_)
  1962.     $(ADDMOD) isupport -init igcref
  1963.  
  1964. ialloc.$(OBJ): ialloc.c $(AK) $(memory__h) $(gx_h)\
  1965.  $(errors_h) $(gsstruct_h) $(gxarith_h)\
  1966.  $(iastate_h) $(iref_h) $(ivmspace_h) $(store_h)
  1967.  
  1968. # igc.c, igcref.c, and igcstr.c should really be in the dpsand2 list,
  1969. # but since all the GC enumeration and relocation routines refer to them,
  1970. # it's too hard to separate them out from the Level 1 base.
  1971. igc.$(OBJ): igc.c $(GH) $(memory__h)\
  1972.   $(errors_h) $(gsexit_h) $(gsmdebug_h) $(gsstruct_h) $(gsutil_h) \
  1973.   $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(inamedef_h) \
  1974.   $(ipacked_h) $(isave_h) $(isstate_h) $(istruct_h) $(opdef_h)
  1975.  
  1976. igcref.$(OBJ): igcref.c $(GH) $(memory__h)\
  1977.  $(gsexit_h) $(gsstruct_h)\
  1978.  $(iastate_h) $(idebug_h) $(igc_h) $(iname_h) $(ipacked_h) $(store_h)
  1979.  
  1980. igcstr.$(OBJ): igcstr.c $(GH) $(memory__h)\
  1981.  $(gsmdebug_h) $(gsstruct_h) $(iastate_h) $(igcstr_h)
  1982.  
  1983. ilocate.$(OBJ): ilocate.c $(GH) $(memory__h)\
  1984.  $(errors_h) $(gsexit_h) $(gsstruct_h)\
  1985.  $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(iname_h)\
  1986.  $(ipacked_h) $(isstate_h) $(iutil_h) $(ivmspace_h)\
  1987.  $(store_h)
  1988.  
  1989. iname.$(OBJ): iname.c $(GH) $(memory__h) $(string__h)\
  1990.  $(gsstruct_h) $(gxobj_h)\
  1991.  $(errors_h) $(imemory_h) $(inamedef_h) $(isave_h) $(store_h)
  1992.  
  1993. isave.$(OBJ): isave.c $(GH) $(memory__h)\
  1994.  $(errors_h) $(gsexit_h) $(gsstruct_h) $(gsutil_h)\
  1995.  $(iastate_h) $(inamedef_h) $(isave_h) $(isstate_h) $(ivmspace_h)\
  1996.  $(ipacked_h) $(store_h)
  1997.  
  1998. ### Include files
  1999.  
  2000. idparam_h=idparam.h
  2001. ilevel_h=ilevel.h
  2002. iparam_h=iparam.h $(gsparam_h)
  2003. istack_h=istack.h
  2004. iutil2_h=iutil2.h
  2005. opcheck_h=opcheck.h
  2006. opextern_h=opextern.h
  2007. # Nested include files
  2008. dstack_h=dstack.h $(istack_h)
  2009. estack_h=estack.h $(istack_h)
  2010. ostack_h=ostack.h $(istack_h)
  2011. oper_h=oper.h $(iutil_h) $(opcheck_h) $(opdef_h) $(opextern_h) $(ostack_h)
  2012.  
  2013. idebug.$(OBJ): idebug.c $(GH) $(string__h)\
  2014.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2015.  $(ostack_h) $(opdef_h) $(ipacked_h) $(store_h)
  2016.  
  2017. idict.$(OBJ): idict.c $(GH) $(string__h) $(errors_h)\
  2018.  $(ialloc_h) $(idebug_h) $(ivmspace_h) $(inamedef_h) $(ipacked_h)\
  2019.  $(isave_h) $(store_h) $(iutil_h) $(idict_h) $(dstack_h)
  2020.  
  2021. idparam.$(OBJ): idparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2022.  $(gsmatrix_h) $(gsuid_h)\
  2023.  $(idict_h) $(idparam_h) $(ilevel_h) $(imemory_h) $(iname_h) $(iutil_h)\
  2024.  $(oper_h) $(store_h)
  2025.  
  2026. iparam.$(OBJ): iparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2027.  $(ialloc_h) $(idict_h) $(iname_h) $(imemory_h) $(iparam_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2028.  $(opcheck_h) $(store_h)
  2029.  
  2030. istack.$(OBJ): istack.c $(GH) $(memory__h) \
  2031.   $(errors_h) $(gsstruct_h) $(gsutil_h) \
  2032.   $(ialloc_h) $(istack_h) $(istruct_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2033.  
  2034. iutil.$(OBJ): iutil.c $(GH) $(math__h) $(memory__h) $(string__h)\
  2035.  $(gsccode_h) $(gsmatrix_h) $(gsutil_h) $(gxfont_h)\
  2036.  $(errors_h) $(idict_h) $(imemory_h) $(iutil_h) $(ivmspace_h)\
  2037.  $(iname_h) $(ipacked_h) $(oper_h) $(store_h)
  2038.  
  2039. # ======================== PostScript Level 1 ======================== #
  2040.  
  2041. ###### Include files
  2042.  
  2043. files_h=files.h
  2044. fname_h=fname.h
  2045. ichar_h=ichar.h
  2046. icharout_h=icharout.h
  2047. icolor_h=icolor.h
  2048. icontext_h=icontext.h $(imemory_h) $(istack_h)
  2049. icsmap_h=icsmap.h
  2050. ifont_h=ifont.h $(gsccode_h) $(gsstruct_h)
  2051. iht_h=iht.h
  2052. iimage_h=iimage.h
  2053. imain_h=imain.h $(gsexit_h)
  2054. imainarg_h=imainarg.h
  2055. iminst_h=iminst.h $(imain_h)
  2056. interp_h=interp.h
  2057. iparray_h=iparray.h
  2058. iscannum_h=iscannum.h
  2059. istream_h=istream.h
  2060. main_h=main.h $(iminst_h)
  2061. overlay_h=overlay.h
  2062. sbwbs_h=sbwbs.h
  2063. sfilter_h=sfilter.h $(gstypes_h)
  2064. shcgen_h=shcgen.h
  2065. smtf_h=smtf.h
  2066. # Nested include files
  2067. bfont_h=bfont.h $(ifont_h)
  2068. ifilter_h=ifilter.h $(istream_h) $(ivmspace_h)
  2069. igstate_h=igstate.h $(gsstate_h) $(gxstate_h) $(istruct_h)
  2070. iscan_h=iscan.h $(sa85x_h) $(sstring_h)
  2071. sbhc_h=sbhc.h $(shc_h)
  2072. # Include files for optional features
  2073. ibnum_h=ibnum.h
  2074.  
  2075. ### Initialization and scanning
  2076.  
  2077. iconfig=iconfig$(CONFIG)
  2078. $(iconfig).$(OBJ): iconf.c $(stdio__h) \
  2079.   $(gconfig_h) $(gscdefs_h) $(gsmemory_h) \
  2080.   $(files_h) $(iminst_h) $(iref_h) $(ivmspace_h) $(opdef_h) $(stream_h)
  2081.     $(RM_) gconfig.h
  2082.     $(RM_) $(iconfig).c
  2083.     $(CP_) $(gconfig_h) gconfig.h
  2084.     $(CP_) iconf.c $(iconfig).c
  2085.     $(CCC) $(iconfig).c
  2086.     $(RM_) gconfig.h
  2087.     $(RM_) $(iconfig).c
  2088.  
  2089. iinit.$(OBJ): iinit.c $(GH) $(string__h)\
  2090.  $(gscdefs_h) $(gsexit_h) $(gsstruct_h)\
  2091.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h)\
  2092.  $(ilevel_h) $(iname_h) $(interp_h) $(opdef_h)\
  2093.  $(ipacked_h) $(iparray_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2094.  
  2095. iscan.$(OBJ): iscan.c $(GH) $(memory__h)\
  2096.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h) $(files_h)\
  2097.  $(ilevel_h) $(iutil_h) $(iscan_h) $(iscannum_h) $(istruct_h) $(ivmspace_h)\
  2098.  $(iname_h) $(ipacked_h) $(iparray_h) $(istream_h) $(ostack_h) $(store_h)\
  2099.  $(stream_h) $(strimpl_h) $(sfilter_h) $(scanchar_h)
  2100.  
  2101. iscannum.$(OBJ): iscannum.c $(GH) $(math__h)\
  2102.   $(errors_h) $(iscannum_h) $(scanchar_h) $(scommon_h) $(store_h)
  2103.  
  2104. ### Streams
  2105.  
  2106. sfilter1.$(OBJ): sfilter1.c $(AK) $(stdio__h) $(memory__h) \
  2107.   $(sfilter_h) $(strimpl_h)
  2108.  
  2109. ###### Operators
  2110.  
  2111. OP=$(GH) $(errors_h) $(oper_h)
  2112.  
  2113. ### Non-graphics operators
  2114.  
  2115. zarith.$(OBJ): zarith.c $(OP) $(math__h) $(store_h)
  2116.  
  2117. zarray.$(OBJ): zarray.c $(OP) $(memory__h) $(ialloc_h) $(ipacked_h) $(store_h)
  2118.  
  2119. zcontrol.$(OBJ): zcontrol.c $(OP) $(string__h)\
  2120.  $(estack_h) $(files_h) $(ipacked_h) $(iutil_h) $(store_h) $(stream_h)
  2121.  
  2122. zdict.$(OBJ): zdict.c $(OP) \
  2123.   $(dstack_h) $(idict_h) $(ilevel_h) $(iname_h) $(ipacked_h) $(ivmspace_h) \
  2124.   $(store_h)
  2125.  
  2126. zfile.$(OBJ): zfile.c $(OP) $(memory__h) $(string__h) $(gp_h)\
  2127.  $(gsstruct_h) $(gxiodev_h) \
  2128.  $(ialloc_h) $(estack_h) $(files_h) $(fname_h) $(ilevel_h) $(interp_h) $(iutil_h)\
  2129.  $(isave_h) $(main_h) $(sfilter_h) $(stream_h) $(strimpl_h) $(store_h)
  2130.  
  2131. zfileio.$(OBJ): zfileio.c $(OP) $(gp_h) \
  2132.   $(files_h) $(ifilter_h) $(store_h) $(stream_h) $(strimpl_h) \
  2133.   $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h)
  2134.  
  2135. zfilter.$(OBJ): zfilter.c $(OP) $(memory__h)\
  2136.  $(gsstruct_h) $(files_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2137.  $(sfilter_h) $(srlx_h) $(sstring_h) $(store_h) $(stream_h) $(strimpl_h)
  2138.  
  2139. zfname.$(OBJ): zfname.c $(OP) $(memory__h)\
  2140.  $(fname_h) $(gxiodev_h) $(ialloc_h) $(stream_h)
  2141.  
  2142. zfproc.$(OBJ): zfproc.c $(GH) $(memory__h)\
  2143.  $(errors_h) $(oper_h)\
  2144.  $(estack_h) $(files_h) $(gsstruct_h) $(ialloc_h) $(ifilter_h) $(istruct_h)\
  2145.  $(store_h) $(stream_h) $(strimpl_h)
  2146.  
  2147. zgeneric.$(OBJ): zgeneric.c $(OP) $(memory__h)\
  2148.  $(idict_h) $(estack_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(store_h)
  2149.  
  2150. ziodev.$(OBJ): ziodev.c $(OP) $(memory__h) $(stdio__h) $(string__h)\
  2151.  $(gp_h) $(gpcheck_h)\
  2152.  $(gsstruct_h) $(gxiodev_h)\
  2153.  $(files_h) $(ialloc_h) $(ivmspace_h) $(store_h) $(stream_h)
  2154.  
  2155. zmath.$(OBJ): zmath.c $(OP) $(math__h) $(gxfarith_h) $(store_h)
  2156.  
  2157. zmisc.$(OBJ): zmisc.c $(OP) $(gscdefs_h) $(gp_h) \
  2158.   $(errno__h) $(memory__h) $(string__h) \
  2159.   $(ialloc_h) $(idict_h) $(dstack_h) $(iname_h) $(ivmspace_h) $(ipacked_h) $(store_h)
  2160.  
  2161. zpacked.$(OBJ): zpacked.c $(OP) \
  2162.   $(ialloc_h) $(idict_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(iparray_h) \
  2163.   $(istack_h) $(store_h)
  2164.  
  2165. zrelbit.$(OBJ): zrelbit.c $(OP) $(gsutil_h) $(store_h) $(idict_h)
  2166.  
  2167. zstack.$(OBJ): zstack.c $(OP) $(memory__h)\
  2168.  $(ialloc_h) $(istack_h) $(store_h)
  2169.  
  2170. zstring.$(OBJ): zstring.c $(OP) $(memory__h)\
  2171.  $(gsutil_h)\
  2172.  $(ialloc_h) $(iname_h) $(ivmspace_h) $(store_h)
  2173.  
  2174. zsysvm.$(OBJ): zsysvm.c $(GH)\
  2175.  $(ialloc_h) $(ivmspace_h) $(oper_h) $(store_h)
  2176.  
  2177. ztoken.$(OBJ): ztoken.c $(OP) \
  2178.   $(estack_h) $(files_h) $(gsstruct_h) $(iscan_h) \
  2179.   $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2180.  
  2181. ztype.$(OBJ): ztype.c $(OP) $(math__h) $(memory__h) $(string__h)\
  2182.  $(dstack_h) $(idict_h) $(imemory_h) $(iname_h)\
  2183.  $(iscan_h) $(iutil_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2184.  
  2185. zvmem.$(OBJ): zvmem.c $(OP)\
  2186.  $(dstack_h) $(estack_h) $(files_h)\
  2187.  $(ialloc_h) $(idict_h) $(igstate_h) $(isave_h) $(store_h) $(stream_h)\
  2188.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h)
  2189.  
  2190. ### Graphics operators
  2191.  
  2192. zchar.$(OBJ): zchar.c $(OP)\
  2193.  $(gsstruct_h) $(gxarith_h) $(gxfixed_h) $(gxmatrix_h)\
  2194.  $(gxchar_h) $(gxdevice_h) $(gxfont_h) $(gzpath_h) $(gzstate_h)\
  2195.  $(dstack_h) $(estack_h) $(ialloc_h) $(ichar_h) $(idict_h) $(ifont_h)\
  2196.  $(ilevel_h) $(iname_h) $(igstate_h) $(ipacked_h) $(store_h)
  2197.  
  2198. # zcharout is used for Type 1 and Type 42 fonts only.
  2199. zcharout.$(OBJ): zcharout.c $(OP)\
  2200.  $(gschar_h) $(gxdevice_h) $(gxfont_h)\
  2201.  $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h)\
  2202.  $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2203.  
  2204. zcolor.$(OBJ): zcolor.c $(OP) \
  2205.   $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gxdevice_h) $(gxcmap_h) \
  2206.   $(ialloc_h) $(icolor_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2207.  
  2208. zdevice.$(OBJ): zdevice.c $(OP) $(string__h)\
  2209.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(interp_h) $(iparam_h) $(ivmspace_h)\
  2210.  $(gsmatrix_h) $(gsstate_h) $(gxdevice_h) $(store_h)
  2211.  
  2212. zfont.$(OBJ): zfont.c $(OP)\
  2213.  $(gschar_h) $(gsstruct_h) $(gxdevice_h) $(gxfont_h) $(gxfcache_h)\
  2214.  $(gzstate_h)\
  2215.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(isave_h) $(ivmspace_h)\
  2216.  $(bfont_h) $(store_h)
  2217.  
  2218. zfont2.$(OBJ): zfont2.c $(OP) $(memory__h) $(string__h)\
  2219.  $(gsmatrix_h) $(gxdevice_h) $(gschar_h) $(gxfixed_h) $(gxfont_h)\
  2220.  $(ialloc_h) $(bfont_h) $(idict_h) $(idparam_h) $(ilevel_h) $(iname_h) $(istruct_h)\
  2221.  $(ipacked_h) $(store_h)
  2222.  
  2223. zgstate.$(OBJ): zgstate.c $(OP) $(math__h)\
  2224.  $(gsmatrix_h) $(ialloc_h) $(idict_h) $(igstate_h) $(istruct_h) $(store_h)
  2225.  
  2226. zht.$(OBJ): zht.c $(OP) $(memory__h)\
  2227.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2228.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2229.  
  2230. zimage.$(OBJ): zimage.c $(OP) \
  2231.   $(estack_h) $(ialloc_h) $(ifilter_h) $(igstate_h) $(iimage_h) $(ilevel_h) \
  2232.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  2233.   $(store_h) $(stream_h)
  2234.  
  2235. zmatrix.$(OBJ): zmatrix.c $(OP)\
  2236.  $(gsmatrix_h) $(igstate_h) $(gscoord_h) $(store_h)
  2237.  
  2238. zpaint.$(OBJ): zpaint.c $(OP)\
  2239.  $(gspaint_h) $(igstate_h)
  2240.  
  2241. zpath.$(OBJ): zpath.c $(OP) $(math__h) \
  2242.   $(gsmatrix_h) $(gspath_h) $(igstate_h) $(store_h)
  2243.  
  2244. # Define the base PostScript language interpreter.
  2245. # This is the subset of PostScript Level 1 required by our PDF reader.
  2246.  
  2247. INT1=icontext.$(OBJ) idebug.$(OBJ) idict.$(OBJ) idparam.$(OBJ)
  2248. INT2=iinit.$(OBJ) interp.$(OBJ) iparam.$(OBJ) ireclaim.$(OBJ)
  2249. INT3=iscan.$(OBJ) iscannum.$(OBJ) istack.$(OBJ) iutil.$(OBJ)
  2250. INT4=scantab.$(OBJ) sfilter1.$(OBJ) sstring.$(OBJ) stream.$(OBJ)
  2251. Z1=zarith.$(OBJ) zarray.$(OBJ) zcontrol.$(OBJ) zdict.$(OBJ)
  2252. Z1OPS=zarith zarray zcontrol zdict
  2253. Z2=zfile.$(OBJ) zfileio.$(OBJ) zfilter.$(OBJ) zfname.$(OBJ) zfproc.$(OBJ)
  2254. Z2OPS=zfile zfileio zfilter zfproc
  2255. Z3=zgeneric.$(OBJ) ziodev.$(OBJ) zmath.$(OBJ) zmisc.$(OBJ) zpacked.$(OBJ)
  2256. Z3OPS=zgeneric ziodev zmath zmisc zpacked
  2257. Z4=zrelbit.$(OBJ) zstack.$(OBJ) zstring.$(OBJ) zsysvm.$(OBJ)
  2258. Z4OPS=zrelbit zstack zstring zsysvm
  2259. Z5=ztoken.$(OBJ) ztype.$(OBJ) zvmem.$(OBJ)
  2260. Z5OPS=ztoken ztype zvmem
  2261. Z6=zchar.$(OBJ) zcolor.$(OBJ) zdevice.$(OBJ) zfont.$(OBJ) zfont2.$(OBJ)
  2262. Z6OPS=zchar zcolor zdevice zfont zfont2
  2263. Z7=zgstate.$(OBJ) zht.$(OBJ) zimage.$(OBJ) zmatrix.$(OBJ) zpaint.$(OBJ) zpath.$(OBJ)
  2264. Z7OPS=zgstate zht zimage zmatrix zpaint zpath
  2265. # We have to be a little underhanded with *config.$(OBJ) so as to avoid
  2266. # circular definitions.
  2267. INT_OBJS=imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ) \
  2268.   $(INT1) $(INT2) $(INT3) $(INT4) \
  2269.   $(Z1) $(Z2) $(Z3) $(Z4) $(Z5) $(Z6) $(Z7)
  2270. INT_CONFIG=$(gconfig).$(OBJ) $(gscdefs).$(OBJ) $(iconfig).$(OBJ) \
  2271.   iccinit$(COMPILE_INITS).$(OBJ)
  2272. INT_ALL=$(INT_OBJS) $(INT_CONFIG)
  2273. # We omit libcore.dev, which should be included here, because problems
  2274. # with the Unix linker require libcore to appear last in the link list
  2275. # when libcore is really a library.
  2276. # We omit $(INT_CONFIG) from the dependency list because they have special
  2277. # dependency requirements and are added to the link list at the very end.
  2278. # zfilter.c shouldn't include the RLE and RLD filters, but we don't want to
  2279. # change this now.
  2280. psbase.dev: $(INT_MAK) $(ECHOGS_XE) $(INT_OBJS)\
  2281.  isupport.dev rld.dev rle.dev sfile.dev
  2282.     $(SETMOD) psbase imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ)
  2283.     $(ADDMOD) psbase -obj $(INT_CONFIG)
  2284.     $(ADDMOD) psbase -obj $(INT1)
  2285.     $(ADDMOD) psbase -obj $(INT2)
  2286.     $(ADDMOD) psbase -obj $(INT3)
  2287.     $(ADDMOD) psbase -obj $(INT4)
  2288.     $(ADDMOD) psbase -obj $(Z1)
  2289.     $(ADDMOD) psbase -oper $(Z1OPS)
  2290.     $(ADDMOD) psbase -obj $(Z2)
  2291.     $(ADDMOD) psbase -oper $(Z2OPS)
  2292.     $(ADDMOD) psbase -obj $(Z3)
  2293.     $(ADDMOD) psbase -oper $(Z3OPS)
  2294.     $(ADDMOD) psbase -obj $(Z4)
  2295.     $(ADDMOD) psbase -oper $(Z4OPS)
  2296.     $(ADDMOD) psbase -obj $(Z5)
  2297.     $(ADDMOD) psbase -oper $(Z5OPS)
  2298.     $(ADDMOD) psbase -obj $(Z6)
  2299.     $(ADDMOD) psbase -oper $(Z6OPS)
  2300.     $(ADDMOD) psbase -obj $(Z7)
  2301.     $(ADDMOD) psbase -oper $(Z7OPS)
  2302.     $(ADDMOD) psbase -iodev stdin stdout stderr lineedit statementedit
  2303.     $(ADDMOD) psbase -include isupport rld rle sfile
  2304.  
  2305. # -------------------------- Feature definitions -------------------------- #
  2306.  
  2307. # ---------------- Full Level 1 interpreter ---------------- #
  2308.  
  2309. level1.dev: $(INT_MAK) $(ECHOGS_XE) psbase.dev bcp.dev hsb.dev path1.dev type1.dev
  2310.     $(SETMOD) level1 -include psbase bcp hsb path1 type1
  2311.     $(ADDMOD) level1 -emulator PostScript PostScriptLevel1
  2312.  
  2313. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  2314.  
  2315. color.dev: $(INT_MAK) $(ECHOGS_XE) cmyklib.dev colimlib.dev cmykread.dev
  2316.     $(SETMOD) color -include cmyklib colimlib cmykread
  2317.  
  2318. cmykread_=zcolor1.$(OBJ) zht1.$(OBJ)
  2319. cmykread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmykread_)
  2320.     $(SETMOD) cmykread $(cmykread_)
  2321.     $(ADDMOD) cmykread -oper zcolor1 zht1
  2322.  
  2323. zcolor1.$(OBJ): zcolor1.c $(OP) \
  2324.   $(gscolor1_h) \
  2325.   $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2326.   $(gzstate_h) \
  2327.   $(ialloc_h) $(icolor_h) $(iimage_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2328.  
  2329. zht1.$(OBJ): zht1.c $(OP) $(memory__h)\
  2330.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h)\
  2331.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2332.  
  2333. # ---------------- HSB color ---------------- #
  2334.  
  2335. hsb_=zhsb.$(OBJ)
  2336. hsb.dev: $(INT_MAK) $(ECHOGS_XE) $(hsb_) hsblib.dev
  2337.     $(SETMOD) hsb $(hsb_)
  2338.     $(ADDMOD) hsb -include hsblib
  2339.     $(ADDMOD) hsb -oper zhsb
  2340.  
  2341. zhsb.$(OBJ): zhsb.c $(OP) \
  2342.   $(gshsb_h) $(igstate_h) $(store_h)
  2343.  
  2344. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  2345.  
  2346. path1_=zpath1.$(OBJ)
  2347. path1.dev: $(INT_MAK) $(ECHOGS_XE) $(path1_) path1lib.dev
  2348.     $(SETMOD) path1 $(path1_)
  2349.     $(ADDMOD) path1 -include path1lib
  2350.     $(ADDMOD) path1 -oper zpath1
  2351.  
  2352. zpath1.$(OBJ): zpath1.c $(OP) $(memory__h)\
  2353.  $(ialloc_h) $(estack_h) $(gspath_h) $(gsstruct_h) $(igstate_h) $(store_h)
  2354.  
  2355. # ================ Level-independent PostScript options ================ #
  2356.  
  2357. # ---------------- BCP filters ---------------- #
  2358.  
  2359. bcp_=sbcp.$(OBJ) zfbcp.$(OBJ)
  2360. bcp.dev: $(INT_MAK) $(ECHOGS_XE) $(bcp_)
  2361.     $(SETMOD) bcp $(bcp_)
  2362.     $(ADDMOD) bcp -oper zfbcp
  2363.  
  2364. sbcp.$(OBJ): sbcp.c $(AK) $(stdio__h) \
  2365.   $(sfilter_h) $(strimpl_h)
  2366.  
  2367. zfbcp.$(OBJ): zfbcp.c $(OP) $(memory__h)\
  2368.  $(gsstruct_h) $(ialloc_h) $(ifilter_h)\
  2369.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2370.  
  2371. # ---------------- Incremental font loading ---------------- #
  2372. # (This only works for Type 1 fonts without eexec encryption.)
  2373.  
  2374. diskfont.dev: $(INT_MAK) $(ECHOGS_XE)
  2375.     $(SETMOD) diskfont -ps gs_diskf
  2376.  
  2377. # ---------------- Double-precision floats ---------------- #
  2378.  
  2379. double_=zdouble.$(OBJ)
  2380. double.dev: $(INT_MAK) $(ECHOGS_XE) $(double_)
  2381.     $(SETMOD) double $(double_)
  2382.     $(ADDMOD) double -oper zdouble
  2383.  
  2384. zdouble.$(OBJ): zdouble.c $(OP) $(ctype__h) $(math__h) $(memory__h) $(string__h) \
  2385.   $(gxfarith_h) $(store_h)
  2386.  
  2387. # ---------------- EPSF files with binary headers ---------------- #
  2388.  
  2389. epsf.dev: $(INT_MAK) $(ECHOGS_XE)
  2390.     $(SETMOD) epsf -ps gs_epsf
  2391.  
  2392. # ---------------- RasterOp ---------------- #
  2393. # This should be a separable feature in the core also....
  2394.  
  2395. rasterop.dev: $(INT_MAK) $(ECHOGS_XE) roplib.dev ropread.dev
  2396.     $(SETMOD) rasterop -include roplib ropread
  2397.  
  2398. ropread_=zrop.$(OBJ)
  2399. ropread.dev: $(INT_MAK) $(ECHOGS_XE) $(ropread_)
  2400.     $(SETMOD) ropread $(ropread_)
  2401.     $(ADDMOD) ropread -oper zrop
  2402.  
  2403. zrop.$(OBJ): zrop.c $(OP) $(memory__h)\
  2404.  $(gsrop_h) $(gsutil_h) $(gxdevice_h)\
  2405.  $(idict_h) $(idparam_h) $(igstate_h) $(store_h)
  2406.  
  2407. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  2408.  
  2409. type1.dev: $(INT_MAK) $(ECHOGS_XE) psf1lib.dev psf1read.dev
  2410.     $(SETMOD) type1 -include psf1lib psf1read
  2411.  
  2412. psf1read_=seexec.$(OBJ) zchar1.$(OBJ) zcharout.$(OBJ) zfont1.$(OBJ) zmisc1.$(OBJ)
  2413. psf1read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf1read_)
  2414.     $(SETMOD) psf1read $(psf1read_)
  2415.     $(ADDMOD) psf1read -oper zchar1 zfont1 zmisc1
  2416.     $(ADDMOD) psf1read -ps gs_type1
  2417.  
  2418. seexec.$(OBJ): seexec.c $(AK) $(stdio__h) \
  2419.   $(gscrypt1_h) $(scanchar_h) $(sfilter_h) $(strimpl_h)
  2420.  
  2421. zchar1.$(OBJ): zchar1.c $(OP) \
  2422.   $(gspaint_h) $(gspath_h) $(gsstruct_h) \
  2423.   $(gxchar_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2424.   $(gxfont_h) $(gxfont1_h) $(gxtype1_h) $(gzstate_h) \
  2425.   $(estack_h) $(ialloc_h) $(ichar_h) $(icharout_h) \
  2426.   $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2427.  
  2428. zfont1.$(OBJ): zfont1.c $(OP) \
  2429.   $(gsmatrix_h) $(gxdevice_h) $(gschar_h) \
  2430.   $(gxfixed_h) $(gxfont_h) $(gxfont1_h) \
  2431.   $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(store_h)
  2432.  
  2433. zmisc1.$(OBJ): zmisc1.c $(OP) $(memory__h)\
  2434.  $(gscrypt1_h)\
  2435.  $(idict_h) $(idparam_h) $(ifilter_h)\
  2436.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2437.  
  2438. # -------------- Compact Font Format and Type 2 charstrings ------------- #
  2439.  
  2440. cff.dev: $(INT_MAK) $(ECHOGS_XE) gs_cff.ps psl2int.dev
  2441.     $(SETMOD) cff -ps gs_cff
  2442.  
  2443. type2.dev: $(INT_MAK) $(ECHOGS_XE) type1.dev psf2lib.dev
  2444.     $(SETMOD) type2 -include psf2lib
  2445.  
  2446. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  2447.  
  2448. # Native TrueType support
  2449. ttfont.dev: $(INT_MAK) $(ECHOGS_XE) type42.dev
  2450.     $(SETMOD) ttfont -include type42
  2451.     $(ADDMOD) ttfont -ps gs_mro_e gs_wan_e gs_ttf
  2452.  
  2453. # Type 42 (embedded TrueType) support
  2454. type42read_=zchar42.$(OBJ) zcharout.$(OBJ) zfont42.$(OBJ)
  2455. type42.dev: $(INT_MAK) $(ECHOGS_XE) $(type42read_) ttflib.dev
  2456.     $(SETMOD) type42 $(type42read_)
  2457.     $(ADDMOD) type42 -include ttflib    
  2458.     $(ADDMOD) type42 -oper zchar42 zfont42
  2459.     $(ADDMOD) type42 -ps gs_typ42
  2460.  
  2461. zchar42.$(OBJ): zchar42.c $(OP) \
  2462.   $(gsmatrix_h) $(gspaint_h) $(gspath_h) \
  2463.   $(gxfixed_h) $(gxchar_h) $(gxfont_h) $(gxfont42_h) \
  2464.   $(gxistate_h) $(gxpath_h) $(gzstate_h) \
  2465.   $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h) \
  2466.   $(ifont_h) $(igstate_h) $(store_h)
  2467.  
  2468. zfont42.$(OBJ): zfont42.c $(OP) \
  2469.   $(gsccode_h) $(gsmatrix_h) $(gxfont_h) $(gxfont42_h) \
  2470.   $(bfont_h) $(idict_h) $(idparam_h) $(store_h)
  2471.  
  2472. # ======================== Precompilation options ======================== #
  2473.  
  2474. # ---------------- Precompiled fonts ---------------- #
  2475. # See fonts.txt for more information.
  2476.  
  2477. ccfont_h=ccfont.h $(std_h) $(gsmemory_h) $(iref_h) $(ivmspace_h) $(store_h)
  2478.  
  2479. CCFONT=$(OP) $(ccfont_h)
  2480.  
  2481. # List the fonts we are going to compile.
  2482. # Because of intrinsic limitations in `make', we have to list
  2483. # the object file names and the font names separately.
  2484. # Because of limitations in the DOS shell, we have to break the fonts up
  2485. # into lists that will fit on a single line (120 characters).
  2486. # The rules for constructing the .c files from the fonts themselves,
  2487. # and for compiling the .c files, are in cfonts.mak, not here.
  2488. # For example, to compile the Courier fonts, you should invoke
  2489. #    make -f cfonts.mak Courier_o
  2490. # By convention, the names of the 35 standard compiled fonts use '0' for
  2491. # the foundry name.  This allows users to substitute different foundries
  2492. # without having to change this makefile.
  2493. ccfonts_ps=gs_ccfnt
  2494. ccfonts1_=0agk.$(OBJ) 0agko.$(OBJ) 0agd.$(OBJ) 0agdo.$(OBJ)
  2495. ccfonts1=agk agko agd agdo
  2496. ccfonts2_=0bkl.$(OBJ) 0bkli.$(OBJ) 0bkd.$(OBJ) 0bkdi.$(OBJ)
  2497. ccfonts2=bkl bkli bkd bkdi
  2498. ccfonts3_=0crr.$(OBJ) 0cri.$(OBJ) 0crb.$(OBJ) 0crbi.$(OBJ)
  2499. ccfonts3=crr cri crb crbi
  2500. ccfonts4_=0hvr.$(OBJ) 0hvro.$(OBJ) 0hvb.$(OBJ) 0hvbo.$(OBJ)
  2501. ccfonts4=hvr hvro hvb hvbo
  2502. ccfonts5_=0hvrrn.$(OBJ) 0hvrorn.$(OBJ) 0hvbrn.$(OBJ) 0hvborn.$(OBJ)
  2503. ccfonts5=hvrrn hvrorn hvbrn hvborn
  2504. ccfonts6_=0ncr.$(OBJ) 0ncri.$(OBJ) 0ncb.$(OBJ) 0ncbi.$(OBJ)
  2505. ccfonts6=ncr ncri ncb ncbi
  2506. ccfonts7_=0plr.$(OBJ) 0plri.$(OBJ) 0plb.$(OBJ) 0plbi.$(OBJ)
  2507. ccfonts7=plr plri plb plbi
  2508. ccfonts8_=0tmr.$(OBJ) 0tmri.$(OBJ) 0tmb.$(OBJ) 0tmbi.$(OBJ)
  2509. ccfonts8=tmr tmri tmb tmbi
  2510. ccfonts9_=0syr.$(OBJ) 0zcmi.$(OBJ) 0zdr.$(OBJ)
  2511. ccfonts9=syr zcmi zdr
  2512. # The free distribution includes Bitstream Charter, Utopia, and
  2513. # freeware Cyrillic and Kana fonts.  We only provide for compiling
  2514. # Charter and Utopia.
  2515. ccfonts10free_=bchr.$(OBJ) bchri.$(OBJ) bchb.$(OBJ) bchbi.$(OBJ)
  2516. ccfonts10free=chr chri chb chbi
  2517. ccfonts11free_=putr.$(OBJ) putri.$(OBJ) putb.$(OBJ) putbi.$(OBJ)
  2518. ccfonts11free=utr utri utb utbi
  2519. # Uncomment the alternatives in the next 4 lines if you want
  2520. # Charter and Utopia compiled in.
  2521. #ccfonts10_=$(ccfonts10free_)
  2522. ccfonts10_=
  2523. #ccfonts10=$(ccfonts10free)
  2524. ccfonts10=
  2525. #ccfonts11_=$(ccfonts11free_)
  2526. ccfonts11_=
  2527. #ccfonts11=$(ccfonts11free)
  2528. ccfonts11=
  2529. # Add your own fonts here if desired.
  2530. ccfonts12_=
  2531. ccfonts12=
  2532. ccfonts13_=
  2533. ccfonts13=
  2534. ccfonts14_=
  2535. ccfonts14=
  2536. ccfonts15_=
  2537. ccfonts15=
  2538.  
  2539. # It's OK for ccfonts_.dev not to be CONFIG-dependent, because it only
  2540. # exists during the execution of the following rule.
  2541. # font2c has the prefix "gs" built into it, so we need to instruct
  2542. # genconf to use the same one.
  2543. $(gconfigf_h): $(MAKEFILE) $(INT_MAK) $(GENCONF_XE)
  2544.     $(SETMOD) ccfonts_ -font $(ccfonts1)
  2545.     $(ADDMOD) ccfonts_ -font $(ccfonts2)
  2546.     $(ADDMOD) ccfonts_ -font $(ccfonts3)
  2547.     $(ADDMOD) ccfonts_ -font $(ccfonts4)
  2548.     $(ADDMOD) ccfonts_ -font $(ccfonts5)
  2549.     $(ADDMOD) ccfonts_ -font $(ccfonts6)
  2550.     $(ADDMOD) ccfonts_ -font $(ccfonts7)
  2551.     $(ADDMOD) ccfonts_ -font $(ccfonts8)
  2552.     $(ADDMOD) ccfonts_ -font $(ccfonts9)
  2553.     $(ADDMOD) ccfonts_ -font $(ccfonts10)
  2554.     $(ADDMOD) ccfonts_ -font $(ccfonts11)
  2555.     $(ADDMOD) ccfonts_ -font $(ccfonts12)
  2556.     $(ADDMOD) ccfonts_ -font $(ccfonts13)
  2557.     $(ADDMOD) ccfonts_ -font $(ccfonts14)
  2558.     $(ADDMOD) ccfonts_ -font $(ccfonts15)
  2559.     $(EXP)genconf ccfonts_.dev -n gs -f $(gconfigf_h)
  2560.  
  2561. # We separate icfontab.dev from ccfonts.dev so that a customer can put
  2562. # compiled fonts into a separate shared library.
  2563.  
  2564. icfontab=icfontab$(CONFIG)
  2565.  
  2566. # Define ccfont_table separately, so it can be set from the command line
  2567. # to select an alternate compiled font table.
  2568. ccfont_table=$(icfontab)
  2569.  
  2570. $(icfontab).dev: $(MAKEFILE) $(INT_MAK) $(ECHOGS_XE) $(icfontab).$(OBJ) \
  2571.   $(ccfonts1_) $(ccfonts2_) $(ccfonts3_) $(ccfonts4_) $(ccfonts5_) \
  2572.   $(ccfonts6_) $(ccfonts7_) $(ccfonts8_) $(ccfonts9_) $(ccfonts10_) \
  2573.   $(ccfonts11_) $(ccfonts12_) $(ccfonts13_) $(ccfonts14_) $(ccfonts15_)
  2574.     $(SETMOD) $(icfontab) -obj $(icfontab).$(OBJ)
  2575.     $(ADDMOD) $(icfontab) -obj $(ccfonts1_)
  2576.     $(ADDMOD) $(icfontab) -obj $(ccfonts2_)
  2577.     $(ADDMOD) $(icfontab) -obj $(ccfonts3_)
  2578.     $(ADDMOD) $(icfontab) -obj $(ccfonts4_)
  2579.     $(ADDMOD) $(icfontab) -obj $(ccfonts5_)
  2580.     $(ADDMOD) $(icfontab) -obj $(ccfonts6_)
  2581.     $(ADDMOD) $(icfontab) -obj $(ccfonts7_)
  2582.     $(ADDMOD) $(icfontab) -obj $(ccfonts8_)
  2583.     $(ADDMOD) $(icfontab) -obj $(ccfonts9_)
  2584.     $(ADDMOD) $(icfontab) -obj $(ccfonts10_)
  2585.     $(ADDMOD) $(icfontab) -obj $(ccfonts11_)
  2586.     $(ADDMOD) $(icfontab) -obj $(ccfonts12_)
  2587.     $(ADDMOD) $(icfontab) -obj $(ccfonts13_)
  2588.     $(ADDMOD) $(icfontab) -obj $(ccfonts14_)
  2589.     $(ADDMOD) $(icfontab) -obj $(ccfonts15_)
  2590.  
  2591. $(icfontab).$(OBJ): icfontab.c $(AK) $(ccfont_h) $(gconfigf_h)
  2592.     $(CP_) $(gconfigf_h) gconfigf.h
  2593.     $(CCCF) icfontab.c
  2594.  
  2595. # Strictly speaking, ccfonts shouldn't need to include type1,
  2596. # since one could choose to precompile only Type 0 fonts,
  2597. # but getting this exactly right would be too much work.
  2598. ccfonts=ccfonts$(CONFIG)
  2599. $(ccfonts).dev: $(MAKEFILE) $(INT_MAK) type1.dev iccfont.$(OBJ) \
  2600.   $(ccfont_table).dev
  2601.     $(SETMOD) $(ccfonts) -include type1
  2602.     $(ADDMOD) $(ccfonts) -include $(ccfont_table)
  2603.     $(ADDMOD) $(ccfonts) -obj iccfont.$(OBJ)
  2604.     $(ADDMOD) $(ccfonts) -oper ccfonts
  2605.     $(ADDMOD) $(ccfonts) -ps $(ccfonts_ps)
  2606.  
  2607. iccfont.$(OBJ): iccfont.c $(GH) $(string__h)\
  2608.  $(gsstruct_h) $(ccfont_h) $(errors_h)\
  2609.  $(ialloc_h) $(idict_h) $(ifont_h) $(iname_h) $(isave_h) $(iutil_h)\
  2610.  $(oper_h) $(ostack_h) $(store_h) $(stream_h) $(strimpl_h) $(sfilter_h) $(iscan_h)
  2611.     $(CCCF) iccfont.c
  2612.  
  2613. # ---------------- Compiled initialization code ---------------- #
  2614.  
  2615. # We select either iccinit0 or iccinit1 depending on COMPILE_INITS.
  2616.  
  2617. iccinit0.$(OBJ): iccinit0.c $(stdpre_h)
  2618.     $(CCCF) iccinit0.c
  2619.  
  2620. iccinit1.$(OBJ): gs_init.$(OBJ)
  2621.     $(CP_) gs_init.$(OBJ) iccinit1.$(OBJ)
  2622.  
  2623. # All the gs_*.ps files should be prerequisites of gs_init.c,
  2624. # but we don't have any convenient list of them.
  2625. gs_init.c: $(GS_INIT) $(GENINIT_XE) $(gconfig_h)
  2626.     $(EXP)geninit $(GS_INIT) $(gconfig_h) -c gs_init.c
  2627.  
  2628. gs_init.$(OBJ): gs_init.c $(stdpre_h)
  2629.     $(CCCF) gs_init.c
  2630.  
  2631. # ======================== PostScript Level 2 ======================== #
  2632.  
  2633. ### In addition to the true Level 2 configuration, we define a 'minimal'
  2634. ### Level 2 that can be used with -dDEBUG in the 16-bit Windows environment.
  2635. ### This also may require trimming down the sizes of the stacks in interp.c.
  2636.  
  2637. lev2min.dev: $(INT_MAK) $(ECHOGS_XE) \
  2638.   psbase.dev devctrl.dev color.dev \
  2639.   dps2lib.dev dps2read.dev fdecode.dev path1.dev type1.dev \
  2640.   psl2lib.dev psl2read.dev
  2641.     $(SETMOD) lev2min -include psbase devctrl color
  2642.     $(ADDMOD) lev2min -include dps2lib dps2read fdecode path1 type1
  2643.     $(ADDMOD) lev2min -include psl2lib psl2read
  2644.     $(ADDMOD) lev2min -emulator PostScript PostScriptLevel1 PostScriptLevel2
  2645.  
  2646. level2.dev: $(INT_MAK) $(ECHOGS_XE) \
  2647.  cidfont.dev cie.dev cmapread.dev compfont.dev dct.dev devctrl.dev dpsand2.dev\
  2648.  filter.dev level1.dev pattern.dev psl2lib.dev psl2read.dev sepr.dev\
  2649.  type42.dev xfilter.dev
  2650.     $(SETMOD) level2 -include cidfont cie cmapread compfont
  2651.     $(ADDMOD) level2 -include dct devctrl dpsand2 filter
  2652.     $(ADDMOD) level2 -include level1 pattern psl2lib psl2read
  2653.     $(ADDMOD) level2 -include sepr type42 xfilter
  2654.     $(ADDMOD) level2 -emulator PostScript PostScriptLevel2
  2655.  
  2656. # Define basic Level 2 language support.
  2657. # This is the minimum required for CMap and CIDFont support.
  2658.  
  2659. psl2int_=iutil2.$(OBJ) zmisc2.$(OBJ) zusparam.$(OBJ)
  2660. psl2int.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2int_) dps2int.dev
  2661.     $(SETMOD) psl2int $(psl2int_)
  2662.     $(ADDMOD) psl2int -include dps2int
  2663.     $(ADDMOD) psl2int -oper zmisc2 zusparam
  2664.     $(ADDMOD) psl2int -ps gs_lev2 gs_res
  2665.  
  2666. iutil2.$(OBJ): iutil2.c $(GH) $(memory__h) $(string__h)\
  2667.  $(gsparam_h) $(gsutil_h)\
  2668.  $(errors_h) $(opcheck_h) $(imemory_h) $(iutil_h) $(iutil2_h)
  2669.  
  2670. zmisc2.$(OBJ): zmisc2.c $(OP) $(memory__h) $(string__h)\
  2671.  $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2672.  $(ilevel_h) $(iname_h) $(iutil2_h) $(ivmspace_h) $(store_h)
  2673.  
  2674. # Note that zusparam includes both Level 1 and Level 2 operators.
  2675. zusparam.$(OBJ): zusparam.c $(OP) $(memory__h) $(string__h)\
  2676.  $(gscdefs_h) $(gsfont_h) $(gsstruct_h) $(gsutil_h) $(gxht_h)\
  2677.  $(ialloc_h) $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2678.  $(iname_h) $(iutil2_h) $(store_h)
  2679.  
  2680. # Define full Level 2 support.
  2681.  
  2682. psl2read_=zcolor2.$(OBJ) zcsindex.$(OBJ) zht2.$(OBJ) zimage2.$(OBJ)
  2683. # Note that zmisc2 includes both Level 1 and Level 2 operators.
  2684. psl2read.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2read_) psl2int.dev dps2read.dev
  2685.     $(SETMOD) psl2read $(psl2read_)
  2686.     $(ADDMOD) psl2read -include psl2int dps2read
  2687.     $(ADDMOD) psl2read -oper zcolor2_l2 zcsindex_l2
  2688.     $(ADDMOD) psl2read -oper zht2_l2 zimage2_l2
  2689.  
  2690. zcolor2.$(OBJ): zcolor2.c $(OP)\
  2691.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2692.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxpcolor_h)\
  2693.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2694.  $(store_h)
  2695.  
  2696. zcsindex.$(OBJ): zcsindex.c $(OP) $(memory__h) \
  2697.   $(gscolor_h) $(gsstruct_h) $(gxfixed_h) $(gxcolor2_h) $(gxcspace_h) $(gsmatrix_h) \
  2698.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2699.  
  2700. zht2.$(OBJ): zht2.c $(OP) \
  2701.   $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2702.   $(estack_h) $(ialloc_h) $(icolor_h) $(idict_h) $(idparam_h) $(igstate_h) \
  2703.   $(iht_h) $(store_h)
  2704.  
  2705. zimage2.$(OBJ): zimage2.c $(OP) $(math__h) $(memory__h)\
  2706.  $(gscolor_h) $(gscolor2_h) $(gscspace_h) $(gsimage_h) $(gsmatrix_h)\
  2707.  $(idict_h) $(idparam_h) $(iimage_h) $(ilevel_h) $(igstate_h)
  2708.  
  2709. # ---------------- Device control ---------------- #
  2710. # This is a catch-all for setpagedevice and IODevices.
  2711.  
  2712. devctrl_=zdevice2.$(OBJ) ziodev2.$(OBJ) zmedia2.$(OBJ) zdevcal.$(OBJ)
  2713. devctrl.dev: $(INT_MAK) $(ECHOGS_XE) $(devctrl_)
  2714.     $(SETMOD) devctrl $(devctrl_)
  2715.     $(ADDMOD) devctrl -oper zdevice2_l2 ziodev2_l2 zmedia2_l2
  2716.     $(ADDMOD) devctrl -iodev null ram calendar
  2717.     $(ADDMOD) devctrl -ps gs_setpd
  2718.  
  2719. zdevice2.$(OBJ): zdevice2.c $(OP) $(math__h) $(memory__h)\
  2720.  $(dstack_h) $(estack_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h) $(store_h)\
  2721.  $(gxdevice_h) $(gsstate_h)
  2722.  
  2723. ziodev2.$(OBJ): ziodev2.c $(OP) $(string__h) $(gp_h)\
  2724.  $(gxiodev_h) $(stream_h) $(files_h) $(iparam_h) $(iutil2_h) $(store_h)
  2725.  
  2726. zmedia2.$(OBJ): zmedia2.c $(OP) $(math__h) $(memory__h) \
  2727.   $(gsmatrix_h) $(idict_h) $(idparam_h) $(iname_h) $(store_h)
  2728.  
  2729. zdevcal.$(OBJ): zdevcal.c $(GH) $(time__h) \
  2730.   $(gxiodev_h) $(iparam_h) $(istack_h)
  2731.  
  2732. # ---------------- Filters other than the ones in sfilter.c ---------------- #
  2733.  
  2734. # Standard Level 2 decoding filters only.  The PDF configuration uses this.
  2735. fdecode_=scantab.$(OBJ) sfilter2.$(OBJ) zfdecode.$(OBJ)
  2736. fdecode.dev: $(INT_MAK) $(ECHOGS_XE) $(fdecode_) cfd.dev lzwd.dev pdiff.dev pngp.dev rld.dev
  2737.     $(SETMOD) fdecode $(fdecode_)
  2738.     $(ADDMOD) fdecode -include cfd lzwd pdiff pngp rld
  2739.     $(ADDMOD) fdecode -oper zfdecode
  2740.  
  2741. zfdecode.$(OBJ): zfdecode.c $(OP) $(memory__h)\
  2742.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2743.  $(sa85x_h) $(scf_h) $(scfx_h) $(sfilter_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) \
  2744.  $(store_h) $(stream_h) $(strimpl_h)
  2745.  
  2746. # Complete Level 2 filter capability.
  2747. filter_=zfilter2.$(OBJ)
  2748. filter.dev: $(INT_MAK) $(ECHOGS_XE) fdecode.dev $(filter_) cfe.dev lzwe.dev rle.dev
  2749.     $(SETMOD) filter -include fdecode
  2750.     $(ADDMOD) filter -obj $(filter_)
  2751.     $(ADDMOD) filter -include cfe lzwe rle
  2752.     $(ADDMOD) filter -oper zfilter2
  2753.  
  2754. zfilter2.$(OBJ): zfilter2.c $(OP) $(memory__h)\
  2755.   $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) $(store_h) \
  2756.   $(sfilter_h) $(scfx_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) $(strimpl_h)
  2757.  
  2758. # Extensions beyond Level 2 standard.
  2759. xfilter_=sbhc.$(OBJ) sbwbs.$(OBJ) shcgen.$(OBJ) smtf.$(OBJ) \
  2760.  zfilterx.$(OBJ)
  2761. xfilter.dev: $(INT_MAK) $(ECHOGS_XE) $(xfilter_) pcxd.dev pngp.dev
  2762.     $(SETMOD) xfilter $(xfilter_)
  2763.     $(ADDMOD) xfilter -include pcxd
  2764.     $(ADDMOD) xfilter -oper zfilterx
  2765.  
  2766. sbhc.$(OBJ): sbhc.c $(AK) $(memory__h) $(stdio__h)\
  2767.  $(gdebug_h) $(sbhc_h) $(shcgen_h) $(strimpl_h)
  2768.  
  2769. sbwbs.$(OBJ): sbwbs.c $(AK) $(stdio__h) $(memory__h) \
  2770.   $(gdebug_h) $(sbwbs_h) $(sfilter_h) $(strimpl_h)
  2771.  
  2772. shcgen.$(OBJ): shcgen.c $(AK) $(memory__h) $(stdio__h)\
  2773.  $(gdebug_h) $(gserror_h) $(gserrors_h) $(gsmemory_h)\
  2774.  $(scommon_h) $(shc_h) $(shcgen_h)
  2775.  
  2776. smtf.$(OBJ): smtf.c $(AK) $(stdio__h) \
  2777.   $(smtf_h) $(strimpl_h)
  2778.  
  2779. zfilterx.$(OBJ): zfilterx.c $(OP) $(memory__h)\
  2780.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h)\
  2781.  $(store_h) $(sfilter_h) $(sbhc_h) $(sbtx_h) $(sbwbs_h) $(shcgen_h)\
  2782.  $(smtf_h) $(spcxx_h) $(strimpl_h)
  2783.  
  2784. # ---------------- Binary tokens ---------------- #
  2785.  
  2786. btoken_=iscanbin.$(OBJ) zbseq.$(OBJ)
  2787. btoken.dev: $(INT_MAK) $(ECHOGS_XE) $(btoken_)
  2788.     $(SETMOD) btoken $(btoken_)
  2789.     $(ADDMOD) btoken -oper zbseq_l2
  2790.     $(ADDMOD) btoken -ps gs_btokn
  2791.  
  2792. bseq_h=bseq.h
  2793. btoken_h=btoken.h
  2794.  
  2795. iscanbin.$(OBJ): iscanbin.c $(GH) $(math__h) $(memory__h) $(errors_h)\
  2796.  $(gsutil_h) $(ialloc_h) $(ibnum_h) $(idict_h) $(iname_h)\
  2797.  $(iscan_h) $(iutil_h) $(ivmspace_h)\
  2798.  $(bseq_h) $(btoken_h) $(dstack_h) $(ostack_h)\
  2799.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2800.  
  2801. zbseq.$(OBJ): zbseq.c $(OP) $(memory__h)\
  2802.  $(ialloc_h) $(idict_h) $(isave_h)\
  2803.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)\
  2804.  $(iname_h) $(ibnum_h) $(btoken_h) $(bseq_h)
  2805.  
  2806. # ---------------- User paths & insideness testing ---------------- #
  2807.  
  2808. upath_=zupath.$(OBJ) ibnum.$(OBJ)
  2809. upath.dev: $(INT_MAK) $(ECHOGS_XE) $(upath_)
  2810.     $(SETMOD) upath $(upath_)
  2811.     $(ADDMOD) upath -oper zupath_l2
  2812.  
  2813. zupath.$(OBJ): zupath.c $(OP) \
  2814.   $(idict_h) $(dstack_h) $(iutil_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h) \
  2815.   $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstate_h) \
  2816.   $(gxfixed_h) $(gxdevice_h) $(gzpath_h) $(gzstate_h)
  2817.  
  2818. # -------- Additions common to Display PostScript and Level 2 -------- #
  2819.  
  2820. dpsand2.dev: $(INT_MAK) $(ECHOGS_XE) btoken.dev color.dev upath.dev dps2lib.dev dps2read.dev
  2821.     $(SETMOD) dpsand2 -include btoken color upath dps2lib dps2read
  2822.  
  2823. dps2int_=zvmem2.$(OBJ) zdps1.$(OBJ)
  2824. # Note that zvmem2 includes both Level 1 and Level 2 operators.
  2825. dps2int.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2int_)
  2826.     $(SETMOD) dps2int $(dps2int_)
  2827.     $(ADDMOD) dps2int -oper zvmem2 zdps1_l2
  2828.     $(ADDMOD) dps2int -ps gs_dps1
  2829.  
  2830. dps2read_=ibnum.$(OBJ) zchar2.$(OBJ)
  2831. dps2read.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2read_) dps2int.dev
  2832.     $(SETMOD) dps2read $(dps2read_)
  2833.     $(ADDMOD) dps2read -include dps2int
  2834.     $(ADDMOD) dps2read -oper ireclaim_l2 zchar2_l2
  2835.     $(ADDMOD) dps2read -ps gs_dps2
  2836.  
  2837. ibnum.$(OBJ): ibnum.c $(GH) $(math__h) $(memory__h)\
  2838.  $(errors_h) $(stream_h) $(ibnum_h) $(imemory_h) $(iutil_h)
  2839.  
  2840. zchar2.$(OBJ): zchar2.c $(OP)\
  2841.  $(gschar_h) $(gsmatrix_h) $(gspath_h) $(gsstruct_h)\
  2842.  $(gxchar_h) $(gxfixed_h) $(gxfont_h)\
  2843.  $(ialloc_h) $(ichar_h) $(estack_h) $(ifont_h) $(iname_h) $(igstate_h)\
  2844.  $(store_h) $(stream_h) $(ibnum_h)
  2845.  
  2846. zdps1.$(OBJ): zdps1.c $(OP) \
  2847.   $(gsmatrix_h) $(gspath_h) $(gspath2_h) $(gsstate_h) \
  2848.   $(ialloc_h) $(ivmspace_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h)
  2849.  
  2850. zvmem2.$(OBJ): zvmem2.c $(OP) \
  2851.   $(estack_h) $(ialloc_h) $(ivmspace_h) $(store_h)
  2852.  
  2853. # ---------------- Display PostScript ---------------- #
  2854.  
  2855. # The context machinery is NOT USABLE in this release.  DO NOT USE IT.
  2856. # IT WILL CAUSE AN IMMEDIATE CRASH.
  2857. #dps_=zdps.$(OBJ) zcontext.$(OBJ)
  2858. dps_=zdps.$(OBJ)
  2859. # Note that zcontext is omitted from the -oper list below.
  2860. dps.dev: $(INT_MAK) $(ECHOGS_XE) level2.dev $(dps_)
  2861.     $(SETMOD) dps -include level2
  2862.     $(ADDMOD) dps -obj $(dps_)
  2863.     $(ADDMOD) dps -oper zdps
  2864.     $(ADDMOD) dps -ps gs_dps
  2865.  
  2866. zdps.$(OBJ): zdps.c $(OP)\
  2867.  $(gsstate_h) $(igstate_h) $(iname_h) $(store_h)
  2868.  
  2869. zcontext.$(OBJ): zcontext.c $(OP) $(gp_h) $(memory__h)\
  2870.  $(gsexit_h) $(gsstruct_h) $(gsutil_h) $(gxalloc_h)\
  2871.  $(icontext_h) $(idict_h) $(igstate_h) $(istruct_h)\
  2872.  $(dstack_h) $(estack_h) $(ostack_h) $(store_h)
  2873.  
  2874. # ---------------- NeXT Display PostScript ---------------- #
  2875. #**************** NOT READY FOR USE YET ****************#
  2876.  
  2877. dpsnext_=zdpnext.$(OBJ)
  2878. dpsnext.dev: $(INT_MAK) $(ECHOGS_XE) dps.dev $(dpsnext_) gs_dpnxt.ps
  2879.     $(SETMOD) dpsnext -include dps
  2880.     $(ADDMOD) dpsnext -obj $(dpsnext_)
  2881.     $(ADDMOD) dpsnext -oper zdpnext
  2882.     $(ADDMOD) dpsnext -ps gs_dpnxt
  2883.  
  2884. zdpnext.$(OBJ): zdpnext.c $(OP)\
  2885.  $(gscspace_h) $(gsiparam_h) $(gsmatrix_h) $(gxcvalue_h) $(gxsample_h)\
  2886.  $(ialloc_h) $(igstate_h) $(iimage_h)
  2887.  
  2888. # -------- Composite (PostScript Type 0) font support -------- #
  2889.  
  2890. compfont.dev: $(INT_MAK) $(ECHOGS_XE) psf0lib.dev psf0read.dev
  2891.     $(SETMOD) compfont -include psf0lib psf0read
  2892.  
  2893. # We always include zfcmap.$(OBJ) because zfont0.c refers to it,
  2894. # and it's not worth the trouble to exclude.
  2895. psf0read_=zchar2.$(OBJ) zfcmap.$(OBJ) zfont0.$(OBJ)
  2896. psf0read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf0read_)
  2897.     $(SETMOD) psf0read $(psf0read_)
  2898.     $(ADDMOD) psf0read -oper zfont0 zchar2 zfcmap
  2899.  
  2900. zfcmap.$(OBJ): zfcmap.c $(OP)\
  2901.  $(gsmatrix_h) $(gsstruct_h) $(gsutil_h)\
  2902.  $(gxfcmap_h) $(gxfont_h)\
  2903.  $(ialloc_h) $(idict_h) $(idparam_h) $(ifont_h) $(iname_h) $(store_h)
  2904.  
  2905. zfont0.$(OBJ): zfont0.c $(OP)\
  2906.  $(gschar_h) $(gsstruct_h)\
  2907.  $(gxdevice_h) $(gxfcmap_h) $(gxfixed_h) $(gxfont_h) $(gxfont0_h) $(gxmatrix_h)\
  2908.  $(gzstate_h)\
  2909.  $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h)\
  2910.  $(store_h)
  2911.  
  2912. # ---------------- CMap support ---------------- #
  2913. # Note that this requires at least minimal Level 2 support,
  2914. # because it requires findresource.
  2915.  
  2916. cmapread_=zfcmap.$(OBJ)
  2917. cmapread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmapread_) cmaplib.dev psl2int.dev
  2918.     $(SETMOD) cmapread $(cmapread_)
  2919.     $(ADDMOD) cmapread -include cmaplib psl2int
  2920.     $(ADDMOD) cmapread -oper zfcmap
  2921.     $(ADDMOD) cmapread -ps gs_cmap
  2922.  
  2923. # ---------------- CIDFont support ---------------- #
  2924. # Note that this requires at least minimal Level 2 support,
  2925. # because it requires findresource.
  2926.  
  2927. cidread_=zcid.$(OBJ)
  2928. cidfont.dev: $(INT_MAK) $(ECHOGS_XE) psf1read.dev psl2int.dev type42.dev\
  2929.  $(cidread_)
  2930.     $(SETMOD) cidfont $(cidread_)
  2931.     $(ADDMOD) cidfont -include psf1read psl2int type42
  2932.     $(ADDMOD) cidfont -ps gs_cidfn
  2933.     $(ADDMOD) cidfont -oper zcid
  2934.  
  2935. zcid.$(OBJ): zcid.c $(OP)\
  2936.  $(gsccode_h) $(gsmatrix_h) $(gxfont_h)\
  2937.  $(bfont_h) $(iname_h) $(store_h)
  2938.  
  2939. # ---------------- CIE color ---------------- #
  2940.  
  2941. cieread_=zcie.$(OBJ) zcrd.$(OBJ)
  2942. cie.dev: $(INT_MAK) $(ECHOGS_XE) $(cieread_) cielib.dev
  2943.     $(SETMOD) cie $(cieread_)
  2944.     $(ADDMOD) cie -oper zcie_l2 zcrd_l2
  2945.     $(ADDMOD) cie -include cielib
  2946.  
  2947. icie_h=icie.h
  2948.  
  2949. zcie.$(OBJ): zcie.c $(OP) $(math__h) $(memory__h) \
  2950.   $(gscolor2_h) $(gscie_h) $(gsstruct_h) $(gxcspace_h) \
  2951.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2952.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2953.  
  2954. zcrd.$(OBJ): zcrd.c $(OP) $(math__h) \
  2955.   $(gscspace_h) $(gscolor2_h) $(gscie_h) $(gsstruct_h) \
  2956.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2957.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2958.  
  2959. # ---------------- Pattern color ---------------- #
  2960.  
  2961. pattern.dev: $(INT_MAK) $(ECHOGS_XE) patlib.dev patread.dev
  2962.     $(SETMOD) pattern -include patlib patread
  2963.  
  2964. patread_=zpcolor.$(OBJ)
  2965. patread.dev: $(INT_MAK) $(ECHOGS_XE) $(patread_)
  2966.     $(SETMOD) patread $(patread_)
  2967.     $(ADDMOD) patread -oper zpcolor_l2
  2968.  
  2969. zpcolor.$(OBJ): zpcolor.c $(OP)\
  2970.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2971.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  2972.    $(gxfixed_h) $(gxpcolor_h)\
  2973.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2974.  $(store_h)
  2975.  
  2976. # ---------------- Separation color ---------------- #
  2977.  
  2978. seprread_=zcssepr.$(OBJ)
  2979. sepr.dev: $(INT_MAK) $(ECHOGS_XE) $(seprread_) seprlib.dev
  2980.     $(SETMOD) sepr $(seprread_)
  2981.     $(ADDMOD) sepr -oper zcssepr_l2
  2982.     $(ADDMOD) sepr -include seprlib
  2983.  
  2984. zcssepr.$(OBJ): zcssepr.c $(OP) \
  2985.   $(gscolor_h) $(gscsepr_h) $(gsmatrix_h) $(gsstruct_h) \
  2986.   $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) \
  2987.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2988.  
  2989. # ---------------- DCT filters ---------------- #
  2990. # The definitions for jpeg*.dev are in jpeg.mak.
  2991.  
  2992. dct.dev: $(INT_MAK) $(ECHOGS_XE) dcte.dev dctd.dev
  2993.     $(SETMOD) dct -include dcte dctd
  2994.  
  2995. # Common code
  2996.  
  2997. dctc_=zfdctc.$(OBJ)
  2998.  
  2999. zfdctc.$(OBJ): zfdctc.c $(GH) $(memory__h) $(stdio__h)\
  3000.  $(errors_h) $(opcheck_h)\
  3001.  $(idict_h) $(idparam_h) $(imemory_h) $(ipacked_h) $(iutil_h)\
  3002.  $(sdct_h) $(sjpeg_h) $(strimpl_h)\
  3003.  jpeglib.h
  3004.  
  3005. # Encoding (compression)
  3006.  
  3007. dcte_=$(dctc_) zfdcte.$(OBJ)
  3008. dcte.dev: $(INT_MAK) $(ECHOGS_XE) sdcte.dev $(dcte_)
  3009.     $(SETMOD) dcte -include sdcte
  3010.     $(ADDMOD) dcte -obj $(dcte_)
  3011.     $(ADDMOD) dcte -oper zfdcte
  3012.  
  3013. zfdcte.$(OBJ): zfdcte.c $(OP) $(memory__h) $(stdio__h)\
  3014.   $(idict_h) $(idparam_h) $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3015.   jpeglib.h
  3016.  
  3017. # Decoding (decompression)
  3018.  
  3019. dctd_=$(dctc_) zfdctd.$(OBJ)
  3020. dctd.dev: $(INT_MAK) $(ECHOGS_XE) sdctd.dev $(dctd_)
  3021.     $(SETMOD) dctd -include sdctd
  3022.     $(ADDMOD) dctd -obj $(dctd_)
  3023.     $(ADDMOD) dctd -oper zfdctd
  3024.  
  3025. zfdctd.$(OBJ): zfdctd.c $(OP) $(memory__h) $(stdio__h)\
  3026.  $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3027.  jpeglib.h
  3028.  
  3029. # ---------------- zlib/Flate filters ---------------- #
  3030.  
  3031. fzlib.dev: $(INT_MAK) $(ECHOGS_XE) zfzlib.$(OBJ) szlibe.dev szlibd.dev
  3032.     $(SETMOD) fzlib -include szlibe szlibd
  3033.     $(ADDMOD) fzlib -obj zfzlib.$(OBJ)
  3034.     $(ADDMOD) fzlib -oper zfzlib
  3035.  
  3036. zfzlib.$(OBJ): zfzlib.c $(OP) \
  3037.   $(errors_h) $(idict_h) $(ifilter_h) \
  3038.   $(spdiffx_h) $(spngpx_h) $(strimpl_h) $(szlibx_h)
  3039.     $(CCCZ) zfzlib.c
  3040.  
  3041. # ================================ PDF ================================ #
  3042.  
  3043. # We need most of the Level 2 interpreter to do PDF, but not all of it.
  3044. # In fact, we don't even need all of a Level 1 interpreter.
  3045.  
  3046. # Because of the way the PDF encodings are defined, they must get loaded
  3047. # before we install the Level 2 resource machinery.
  3048. # On the other hand, the PDF .ps files must get loaded after
  3049. # level2dict is defined.
  3050. pdfmin.dev: $(INT_MAK) $(ECHOGS_XE)\
  3051.  psbase.dev color.dev dps2lib.dev dps2read.dev\
  3052.  fdecode.dev type1.dev pdffonts.dev psl2lib.dev psl2read.dev pdfread.dev
  3053.     $(SETMOD) pdfmin -include psbase color dps2lib dps2read
  3054.     $(ADDMOD) pdfmin -include fdecode type1
  3055.     $(ADDMOD) pdfmin -include pdffonts psl2lib psl2read pdfread
  3056.     $(ADDMOD) pdfmin -emulator PDF
  3057.  
  3058. pdf.dev: $(INT_MAK) $(ECHOGS_XE)\
  3059.  pdfmin.dev cff.dev cidfont.dev cie.dev compfont.dev cmapread.dev dctd.dev\
  3060.  ttfont.dev type2.dev
  3061.     $(SETMOD) pdf -include pdfmin cff cidfont cie cmapread compfont dctd
  3062.     $(ADDMOD) pdf -include ttfont type2
  3063.  
  3064. # Reader only
  3065.  
  3066. pdffonts.dev: $(INT_MAK) $(ECHOGS_XE) \
  3067.   gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps
  3068.     $(SETMOD) pdffonts -ps gs_mex_e gs_mro_e gs_pdf_e gs_wan_e
  3069.  
  3070. # pdf_2ps must be the last .ps file loaded.
  3071. pdfread.dev: $(INT_MAK) $(ECHOGS_XE) fzlib.dev
  3072.     $(SETMOD) pdfread -include fzlib
  3073.     $(ADDMOD) pdfread -ps gs_pdf gs_l2img
  3074.     $(ADDMOD) pdfread -ps pdf_base pdf_draw pdf_font pdf_main pdf_sec
  3075.     $(ADDMOD) pdfread -ps pdf_2ps
  3076.  
  3077. # ============================= Main program ============================== #
  3078.  
  3079. gs.$(OBJ): gs.c $(GH) \
  3080.   $(imain_h) $(imainarg_h) $(iminst_h)
  3081.  
  3082. icontext.$(OBJ): icontext.c $(GH)\
  3083.  $(gsstruct_h) $(gxalloc_h)\
  3084.  $(dstack_h) $(estack_h) $(ostack_h)\
  3085.  $(icontext_h) $(igstate_h) $(store_h)
  3086.  
  3087. imainarg.$(OBJ): imainarg.c $(GH) $(ctype__h) $(memory__h) $(string__h) \
  3088.   $(gp_h) \
  3089.   $(gsargs_h) $(gscdefs_h) $(gsdevice_h) $(gsmdebug_h) $(gxdevice_h) $(gxdevmem_h) \
  3090.   $(errors_h) $(estack_h) $(files_h) \
  3091.   $(ialloc_h) $(imain_h) $(imainarg_h) $(iminst_h) \
  3092.   $(iname_h) $(interp_h) $(iscan_h) $(iutil_h) $(ivmspace_h) \
  3093.   $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3094.  
  3095. imain.$(OBJ): imain.c $(GH) $(memory__h) $(string__h)\
  3096.  $(gp_h) $(gslib_h) $(gsmatrix_h) $(gsutil_h) $(gxdevice_h)\
  3097.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3098.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(interp_h)\
  3099.  $(isave_h) $(iscan_h) $(ivmspace_h)\
  3100.  $(main_h) $(oper_h) $(ostack_h)\
  3101.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3102.  
  3103. interp.$(OBJ): interp.c $(GH) $(memory__h) $(string__h)\
  3104.  $(gsstruct_h)\
  3105.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3106.  $(ialloc_h) $(iastruct_h) $(inamedef_h) $(idict_h) $(interp_h) $(ipacked_h)\
  3107.  $(iscan_h) $(isave_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  3108.  $(oper_h) $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3109.     $(CCINT) interp.c
  3110.  
  3111. ireclaim.$(OBJ): ireclaim.c $(GH) \
  3112.   $(errors_h) $(gsstruct_h) $(iastate_h) $(opdef_h) $(store_h) \
  3113.   $(dstack_h) $(estack_h) $(ostack_h)
  3114. #    Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3115. # This file is part of Aladdin Ghostscript.
  3116. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3117. # or distributor accepts any responsibility for the consequences of using it,
  3118. # or for whether it serves any particular purpose or works at all, unless he
  3119. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3120. # License (the "License") for full details.
  3121. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3122. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3123. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3124. # under certain conditions described in the License.  Among other things, the
  3125. # License requires that the copyright notice and this notice be preserved on
  3126. # all copies.
  3127.  
  3128. # makefile for Independent JPEG Group library code.
  3129.  
  3130. # NOTE: This makefile is only known to work with the following versions
  3131. # of the IJG library: 6, 6a.
  3132. # As of May 11, 1996, version 6a is the current version.
  3133. #
  3134. # You can get the IJG library by Internet anonymous FTP from the following
  3135. # places:
  3136. #    Standard distribution (tar + gzip format, Unix end-of-line):
  3137. #        ftp.uu.net:/graphics/jpeg/jpegsrc.v*.tar.gz
  3138. #        ftp.cs.wisc.edu:/ghost/jpegsrc.v*.tar.gz
  3139. #    MS-DOS archive (PKZIP a.k.a. zip format, MS-DOS end-of-line):
  3140. #        ftp.simtel.net:/pub/simtelnet/msdos/graphics/jpegsr*.zip
  3141. #        ftp.cs.wisc.edu:/ghost/jpeg-*.zip
  3142. # The first site named above (ftp.uu.net and ftp.simtel.net) is supposed
  3143. # to be the master distribution site, so it may have a more up-to-date
  3144. # version; the ftp.cs.wisc.edu site is the master distribution site for
  3145. # Ghostscript, so it will always have IJG library versions known to be
  3146. # compatible with Ghostscript.
  3147. #
  3148. # If the version number, and hence the subdirectory name, changes, you
  3149. # will probably want to change the definitions of JSRCDIR and possibly
  3150. # JVERSION (in the platform-specific makefile, not here) to reflect this,
  3151. # since that way you can use the IJG archive without change.
  3152. #
  3153. # NOTE: For some obscure reason (probably a bug in djtarx), if you are
  3154. # compiling on a DesqView/X system, you should use the zip version of the
  3155. # IJG library, not the tar.gz version.
  3156.  
  3157. # Define the name of this makefile.
  3158. JPEG_MAK=jpeg.mak
  3159.  
  3160. # JSRCDIR is defined in the platform-specific makefile, not here,
  3161. # as the directory where the IJG library sources are stored.
  3162. #JSRCDIR=jpeg-6a
  3163. # JVERSION is defined in the platform-specific makefile, not here,
  3164. # as the IJG library major version number (currently "5" or "6").
  3165. #JVERSION=6
  3166.  
  3167. JSRC=$(JSRCDIR)$(D)
  3168. # CCCJ is defined in gs.mak.
  3169. #CCCJ=$(CCC) -I. -I$(JSRCDIR)
  3170.  
  3171. # We keep all of the IJG code in a separate directory so as not to
  3172. # inadvertently mix it up with Aladdin Enterprises' own code.
  3173. # However, we need our own version of jconfig.h, and our own "wrapper" for
  3174. # jmorecfg.h.  We also need a substitute for jerror.c, in order to
  3175. # keep the error strings out of the automatic data segment in
  3176. # 16-bit environments.  For v5*, we also need our own version of jpeglib.h
  3177. # in order to change MAX_BLOCKS_IN_MCU for Adobe compatibility.
  3178. # (This need will go away when IJG v6 is released.)
  3179.  
  3180. # Because this file is included after lib.mak, we can't use _h macros
  3181. # to express indirect dependencies; instead, we build the dependencies
  3182. # into the rules for copying the files.
  3183. jconfig_h=jconfig.h
  3184. jerror_h=jerror.h
  3185. jmorecfg_h=jmorecfg.h
  3186. jpeglib_h=jpeglib.h
  3187.  
  3188. jconfig.h: gsjconf.h $(std_h)
  3189.     $(CP_) gsjconf.h jconfig.h
  3190.  
  3191. jmorecfg.h: gsjmorec.h jmcorig.h
  3192.     $(CP_) gsjmorec.h jmorecfg.h
  3193.  
  3194. jmcorig.h: $(JSRC)jmorecfg.h
  3195.     $(CP_) $(JSRC)jmorecfg.h jmcorig.h
  3196.  
  3197. jpeglib.h: jlib$(JVERSION).h jconfig.h jmorecfg.h
  3198.     $(CP_) jlib$(JVERSION).h jpeglib.h
  3199.  
  3200. jlib5.h: gsjpglib.h
  3201.     $(CP_) gsjpglib.h jlib5.h
  3202.  
  3203. jlib6.h: $(JSRC)jpeglib.h
  3204.     $(CP_) $(JSRC)jpeglib.h jlib6.h
  3205.  
  3206. # To ensure that the compiler finds our versions of jconfig.h and jmorecfg.h,
  3207. # regardless of the compiler's search rule, we must copy up all .c files,
  3208. # and all .h files that include either of these files, directly or
  3209. # indirectly.  The only such .h files currently are jinclude.h and jpeglib.h.
  3210. # (Currently, we supply our own version of jpeglib.h -- see above.)
  3211. # Also, to avoid including the JSRCDIR directory name in our source files,
  3212. # we must also copy up any other .h files that our own code references.
  3213. # Currently, the only such .h files are jerror.h and jversion.h.
  3214.  
  3215. JHCOPY=jinclude.h jpeglib.h jerror.h jversion.h
  3216.  
  3217. jinclude.h: $(JSRC)jinclude.h
  3218.     $(CP_) $(JSRC)jinclude.h jinclude.h
  3219.  
  3220. #jpeglib.h: $(JSRC)jpeglib.h
  3221. #    $(CP_) $(JSRC)jpeglib.h jpeglib.h
  3222.  
  3223. jerror.h: $(JSRC)jerror.h
  3224.     $(CP_) $(JSRC)jerror.h jerror.h
  3225.  
  3226. jversion.h: $(JSRC)jversion.h
  3227.     $(CP_) $(JSRC)jversion.h jversion.h
  3228.  
  3229. # In order to avoid having to keep the dependency lists for the IJG code
  3230. # accurate, we simply make all of them depend on the only files that
  3231. # we are ever going to change, and on all the .h files that must be copied up.
  3232. # This is too conservative, but only hurts us if we are changing our own
  3233. # j*.h files, which happens only rarely during development.
  3234.  
  3235. JDEP=$(AK) $(jconfig_h) $(jerror_h) $(jmorecfg_h) $(JHCOPY)
  3236.  
  3237. # Code common to compression and decompression.
  3238.  
  3239. jpegc_=jcomapi.$(OBJ) jutils.$(OBJ) sjpegerr.$(OBJ) jmemmgr.$(OBJ)
  3240. jpegc.dev: $(JPEG_MAK) $(ECHOGS_XE) $(jpegc_)
  3241.     $(SETMOD) jpegc $(jpegc_)
  3242.  
  3243. jcomapi.$(OBJ): $(JSRC)jcomapi.c $(JDEP)
  3244.     $(CP_) $(JSRC)jcomapi.c .
  3245.     $(CCCJ) jcomapi.c
  3246.     $(RM_) jcomapi.c
  3247.  
  3248. jutils.$(OBJ): $(JSRC)jutils.c $(JDEP)
  3249.     $(CP_) $(JSRC)jutils.c .
  3250.     $(CCCJ) jutils.c
  3251.     $(RM_) jutils.c
  3252.  
  3253. # Note that sjpegerr replaces jerror.
  3254. sjpegerr.$(OBJ): sjpegerr.c $(JDEP)
  3255.     $(CCCF) sjpegerr.c
  3256.  
  3257. jmemmgr.$(OBJ): $(JSRC)jmemmgr.c $(JDEP)
  3258.     $(CP_) $(JSRC)jmemmgr.c .
  3259.     $(CCCJ) jmemmgr.c
  3260.     $(RM_) jmemmgr.c
  3261.  
  3262. # Encoding (compression) code.
  3263.  
  3264. jpege.dev: jpege$(JVERSION).dev
  3265.     $(CP_) jpege$(JVERSION).dev jpege.dev
  3266.  
  3267. jpege5=jcapi.$(OBJ)
  3268. jpege6=jcapimin.$(OBJ) jcapistd.$(OBJ) jcinit.$(OBJ)
  3269.  
  3270. jpege_1=jccoefct.$(OBJ) jccolor.$(OBJ) jcdctmgr.$(OBJ) 
  3271. jpege_2=jchuff.$(OBJ) jcmainct.$(OBJ) jcmarker.$(OBJ) jcmaster.$(OBJ)
  3272. jpege_3=jcparam.$(OBJ) jcprepct.$(OBJ) jcsample.$(OBJ) jfdctint.$(OBJ)
  3273.  
  3274. jpege5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege5) $(jpege_1) $(jpege_2) $(jpege_3)
  3275.     $(SETMOD) jpege5 $(jpege5)
  3276.     $(ADDMOD) jpege5 -include jpegc
  3277.     $(ADDMOD) jpege5 -obj $(jpege_1)
  3278.     $(ADDMOD) jpege5 -obj $(jpege_2)
  3279.     $(ADDMOD) jpege5 -obj $(jpege_3)
  3280.  
  3281. jpege6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege6) $(jpege_1) $(jpege_2) $(jpege_3)
  3282.     $(SETMOD) jpege6 $(jpege6)
  3283.     $(ADDMOD) jpege6 -include jpegc
  3284.     $(ADDMOD) jpege6 -obj $(jpege_1)
  3285.     $(ADDMOD) jpege6 -obj $(jpege_2)
  3286.     $(ADDMOD) jpege6 -obj $(jpege_3)
  3287.  
  3288. # jcapi.c is v5* only
  3289. jcapi.$(OBJ): $(JSRC)jcapi.c $(JDEP)
  3290.     $(CP_) $(JSRC)jcapi.c .
  3291.     $(CCCJ) jcapi.c
  3292.     $(RM_) jcapi.c
  3293.   
  3294. # jcapimin.c is new in v6
  3295. jcapimin.$(OBJ): $(JSRC)jcapimin.c $(JDEP)
  3296.     $(CP_) $(JSRC)jcapimin.c .
  3297.     $(CCCJ) jcapimin.c
  3298.     $(RM_) jcapimin.c
  3299.  
  3300. # jcapistd.c is new in v6
  3301. jcapistd.$(OBJ): $(JSRC)jcapistd.c $(JDEP)
  3302.     $(CP_) $(JSRC)jcapistd.c .
  3303.     $(CCCJ) jcapistd.c
  3304.     $(RM_) jcapistd.c
  3305.  
  3306. # jcinit.c is new in v6
  3307. jcinit.$(OBJ): $(JSRC)jcinit.c $(JDEP)
  3308.     $(CP_) $(JSRC)jcinit.c .
  3309.     $(CCCJ) jcinit.c
  3310.     $(RM_) jcinit.c
  3311.  
  3312. jccoefct.$(OBJ): $(JSRC)jccoefct.c $(JDEP)
  3313.     $(CP_) $(JSRC)jccoefct.c .
  3314.     $(CCCJ) jccoefct.c
  3315.     $(RM_) jccoefct.c
  3316.  
  3317. jccolor.$(OBJ): $(JSRC)jccolor.c $(JDEP)
  3318.     $(CP_) $(JSRC)jccolor.c .
  3319.     $(CCCJ) jccolor.c
  3320.     $(RM_) jccolor.c
  3321.  
  3322. jcdctmgr.$(OBJ): $(JSRC)jcdctmgr.c $(JDEP)
  3323.     $(CP_) $(JSRC)jcdctmgr.c .
  3324.     $(CCCJ) jcdctmgr.c
  3325.     $(RM_) jcdctmgr.c
  3326.  
  3327. jchuff.$(OBJ): $(JSRC)jchuff.c $(JDEP)
  3328.     $(CP_) $(JSRC)jchuff.c .
  3329.     $(CCCJ) jchuff.c
  3330.     $(RM_) jchuff.c
  3331.  
  3332. jcmainct.$(OBJ): $(JSRC)jcmainct.c $(JDEP)
  3333.     $(CP_) $(JSRC)jcmainct.c .
  3334.     $(CCCJ) jcmainct.c
  3335.     $(RM_) jcmainct.c
  3336.  
  3337. jcmarker.$(OBJ): $(JSRC)jcmarker.c $(JDEP)
  3338.     $(CP_) $(JSRC)jcmarker.c .
  3339.     $(CCCJ) jcmarker.c
  3340.     $(RM_) jcmarker.c
  3341.  
  3342. jcmaster.$(OBJ): $(JSRC)jcmaster.c $(JDEP)
  3343.     $(CP_) $(JSRC)jcmaster.c .
  3344.     $(CCCJ) jcmaster.c
  3345.     $(RM_) jcmaster.c
  3346.  
  3347. jcparam.$(OBJ): $(JSRC)jcparam.c $(JDEP)
  3348.     $(CP_) $(JSRC)jcparam.c .
  3349.     $(CCCJ) jcparam.c
  3350.     $(RM_) jcparam.c
  3351.  
  3352. jcprepct.$(OBJ): $(JSRC)jcprepct.c $(JDEP)
  3353.     $(CP_) $(JSRC)jcprepct.c .
  3354.     $(CCCJ) jcprepct.c
  3355.     $(RM_) jcprepct.c
  3356.  
  3357. jcsample.$(OBJ): $(JSRC)jcsample.c $(JDEP)
  3358.     $(CP_) $(JSRC)jcsample.c .
  3359.     $(CCCJ) jcsample.c
  3360.     $(RM_) jcsample.c
  3361.  
  3362. jfdctint.$(OBJ): $(JSRC)jfdctint.c $(JDEP)
  3363.     $(CP_) $(JSRC)jfdctint.c .
  3364.     $(CCCJ) jfdctint.c
  3365.     $(RM_) jfdctint.c
  3366.  
  3367. # Decompression code
  3368.  
  3369. jpegd.dev: jpegd$(JVERSION).dev
  3370.     $(CP_) jpegd$(JVERSION).dev jpegd.dev
  3371.  
  3372. jpegd5=jdapi.$(OBJ)
  3373. jpegd6=jdapimin.$(OBJ) jdapistd.$(OBJ) jdinput.$(OBJ) jdphuff.$(OBJ)
  3374.  
  3375. jpegd_1=jdcoefct.$(OBJ) jdcolor.$(OBJ)
  3376. jpegd_2=jddctmgr.$(OBJ) jdhuff.$(OBJ) jdmainct.$(OBJ) jdmarker.$(OBJ)
  3377. jpegd_3=jdmaster.$(OBJ) jdpostct.$(OBJ) jdsample.$(OBJ) jidctint.$(OBJ)
  3378.  
  3379. jpegd5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd5) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3380.     $(SETMOD) jpegd5 $(jpegd5)
  3381.     $(ADDMOD) jpegd5 -include jpegc
  3382.     $(ADDMOD) jpegd5 -obj $(jpegd_1)
  3383.     $(ADDMOD) jpegd5 -obj $(jpegd_2)
  3384.     $(ADDMOD) jpegd5 -obj $(jpegd_3)
  3385.  
  3386. jpegd6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd6) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3387.     $(SETMOD) jpegd6 $(jpegd6)
  3388.     $(ADDMOD) jpegd6 -include jpegc
  3389.     $(ADDMOD) jpegd6 -obj $(jpegd_1)
  3390.     $(ADDMOD) jpegd6 -obj $(jpegd_2)
  3391.     $(ADDMOD) jpegd6 -obj $(jpegd_3)
  3392.  
  3393. # jdapi.c is v5* only
  3394. jdapi.$(OBJ): $(JSRC)jdapi.c $(JDEP)
  3395.     $(CP_) $(JSRC)jdapi.c .
  3396.     $(CCCJ) jdapi.c
  3397.     $(RM_) jdapi.c
  3398.  
  3399. # jdapimin.c is new in v6
  3400. jdapimin.$(OBJ): $(JSRC)jdapimin.c $(JDEP)
  3401.     $(CP_) $(JSRC)jdapimin.c .
  3402.     $(CCCJ) jdapimin.c
  3403.     $(RM_) jdapimin.c
  3404.  
  3405. # jdapistd.c is new in v6
  3406. jdapistd.$(OBJ): $(JSRC)jdapistd.c $(JDEP)
  3407.     $(CP_) $(JSRC)jdapistd.c .
  3408.     $(CCCJ) jdapistd.c
  3409.     $(RM_) jdapistd.c
  3410.  
  3411. jdcoefct.$(OBJ): $(JSRC)jdcoefct.c $(JDEP)
  3412.     $(CP_) $(JSRC)jdcoefct.c .
  3413.     $(CCCJ) jdcoefct.c
  3414.     $(RM_) jdcoefct.c
  3415.  
  3416. jdcolor.$(OBJ): $(JSRC)jdcolor.c $(JDEP)
  3417.     $(CP_) $(JSRC)jdcolor.c .
  3418.     $(CCCJ) jdcolor.c
  3419.     $(RM_) jdcolor.c
  3420.  
  3421. jddctmgr.$(OBJ): $(JSRC)jddctmgr.c $(JDEP)
  3422.     $(CP_) $(JSRC)jddctmgr.c .
  3423.     $(CCCJ) jddctmgr.c
  3424.     $(RM_) jddctmgr.c
  3425.  
  3426. jdhuff.$(OBJ): $(JSRC)jdhuff.c $(JDEP)
  3427.     $(CP_) $(JSRC)jdhuff.c .
  3428.     $(CCCJ) jdhuff.c
  3429.     $(RM_) jdhuff.c
  3430.  
  3431. # jdinput.c is new in v6
  3432. jdinput.$(OBJ): $(JSRC)jdinput.c $(JDEP)
  3433.     $(CP_) $(JSRC)jdinput.c .
  3434.     $(CCCJ) jdinput.c
  3435.     $(RM_) jdinput.c
  3436.  
  3437. jdmainct.$(OBJ): $(JSRC)jdmainct.c $(JDEP)
  3438.     $(CP_) $(JSRC)jdmainct.c .
  3439.     $(CCCJ) jdmainct.c
  3440.     $(RM_) jdmainct.c
  3441.  
  3442. jdmarker.$(OBJ): $(JSRC)jdmarker.c $(JDEP)
  3443.     $(CP_) $(JSRC)jdmarker.c .
  3444.     $(CCCJ) jdmarker.c
  3445.     $(RM_) jdmarker.c
  3446.  
  3447. jdmaster.$(OBJ): $(JSRC)jdmaster.c $(JDEP)
  3448.     $(CP_) $(JSRC)jdmaster.c .
  3449.     $(CCCJ) jdmaster.c
  3450.     $(RM_) jdmaster.c
  3451.  
  3452. # jdphuff.c is new in v6
  3453. jdphuff.$(OBJ): $(JSRC)jdphuff.c $(JDEP)
  3454.     $(CP_) $(JSRC)jdphuff.c .
  3455.     $(CCCJ) jdphuff.c
  3456.     $(RM_) jdphuff.c
  3457.  
  3458. jdpostct.$(OBJ): $(JSRC)jdpostct.c $(JDEP)
  3459.     $(CP_) $(JSRC)jdpostct.c .
  3460.     $(CCCJ) jdpostct.c
  3461.     $(RM_) jdpostct.c
  3462.  
  3463. jdsample.$(OBJ): $(JSRC)jdsample.c $(JDEP)
  3464.     $(CP_) $(JSRC)jdsample.c .
  3465.     $(CCCJ) jdsample.c
  3466.     $(RM_) jdsample.c
  3467.  
  3468. jidctint.$(OBJ): $(JSRC)jidctint.c $(JDEP)
  3469.     $(CP_) $(JSRC)jidctint.c .
  3470.     $(CCCJ) jidctint.c
  3471.     $(RM_) jidctint.c
  3472. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3473. # This file is part of Aladdin Ghostscript.
  3474. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3475. # or distributor accepts any responsibility for the consequences of using it,
  3476. # or for whether it serves any particular purpose or works at all, unless he
  3477. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3478. # License (the "License") for full details.
  3479. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3480. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3481. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3482. # under certain conditions described in the License.  Among other things, the
  3483. # License requires that the copyright notice and this notice be preserved on
  3484. # all copies.
  3485.  
  3486. # makefile for PNG (Portable Network Graphics) code.
  3487.  
  3488. # This partial makefile compiles the png library for use in the Ghostscript
  3489. # PNG drivers.  You can get the source code for this library from:
  3490. #   ftp://swrinde.nde.swri.edu/pub/png/src/
  3491. # The makefile is known to work with the following library versions:
  3492. # 0.89, 0.90, 0.95, and 0.96.  NOTE: the archive for libpng 0.95 may
  3493. # be inconsistent: if you have compilation problems, use an older version.
  3494. # Please see Ghostscript's `make.txt' file for instructions about how to
  3495. # unpack these archives.
  3496. #
  3497. # The specification for the PNG file format is available from:
  3498. #   http://www.group42.com/png.htm
  3499. #   http://www.w3.org/pub/WWW/TR/WD-png
  3500.  
  3501. # Define the name of this makefile.
  3502. LIBPNG_MAK=libpng.mak
  3503.  
  3504. # PSRCDIR is defined in the platform-specific makefile, not here,
  3505. # as the directory where the PNG library sources are stored.
  3506. #PSRCDIR=libpng
  3507. # PVERSION is defined in the platform-specific makefile, not here,
  3508. # as the libpng version number ("89", "90", "95", or "96").
  3509. #PVERSION=96
  3510.  
  3511. PSRC=$(PSRCDIR)$(D)
  3512. # CCCP is defined in gs.mak.
  3513. #CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR)
  3514.  
  3515. # We keep all of the PNG code in a separate directory so as not to
  3516. # inadvertently mix it up with Aladdin Enterprises' own code.
  3517. PDEP=$(AK)
  3518.  
  3519. png_1=png.$(OBJ) pngmem.$(OBJ) pngerror.$(OBJ)
  3520. png_2=pngtrans.$(OBJ) pngwrite.$(OBJ) pngwtran.$(OBJ) pngwutil.$(OBJ)
  3521.  
  3522. # libpng modules
  3523.  
  3524. png.$(OBJ): $(PSRC)png.c $(PDEP)
  3525.     $(CCCP) $(PSRC)png.c
  3526.  
  3527. # version 0.89 uses pngwio.c
  3528. pngwio.$(OBJ): $(PSRC)pngwio.c $(PDEP)
  3529.     $(CCCP) $(PSRC)pngwio.c
  3530.  
  3531. pngmem.$(OBJ): $(PSRC)pngmem.c $(PDEP)
  3532.     $(CCCP) $(PSRC)pngmem.c
  3533.  
  3534. pngerror.$(OBJ): $(PSRC)pngerror.c $(PDEP)
  3535.     $(CCCP) $(PSRC)pngerror.c
  3536.  
  3537. pngtrans.$(OBJ): $(PSRC)pngtrans.c $(PDEP)
  3538.     $(CCCP) $(PSRC)pngtrans.c
  3539.  
  3540. pngwrite.$(OBJ): $(PSRC)pngwrite.c $(PDEP)
  3541.     $(CCCP) $(PSRC)pngwrite.c
  3542.  
  3543. pngwtran.$(OBJ): $(PSRC)pngwtran.c $(PDEP)
  3544.     $(CCCP) $(PSRC)pngwtran.c
  3545.  
  3546. pngwutil.$(OBJ): $(PSRC)pngwutil.c $(PDEP)
  3547.     $(CCCP) $(PSRC)pngwutil.c
  3548.  
  3549. # Define the version of libpng.dev that we are actually using.
  3550. libpng.dev: $(MAKEFILE) libpng_$(SHARE_LIBPNG).dev
  3551.     $(CP_) libpng_$(SHARE_LIBPNG).dev libpng.dev
  3552.  
  3553. # Define the shared version of libpng.
  3554. # Note that it requires libz, which must be searched *after* libpng.
  3555. libpng_1.dev: $(MAKEFILE) $(LIBPNG_MAK) $(ECHOGS_XE) zlibe.dev
  3556.     $(SETMOD) libpng_1 -lib $(LIBPNG_NAME)
  3557.     $(ADDMOD) libpng_1 -include zlibe
  3558.  
  3559. # Define the non-shared version of libpng.
  3560. libpng_0.dev: $(LIBPNG_MAK) $(ECHOGS_XE) $(png_1) $(png_2)\
  3561.  zlibe.dev libpng$(PVERSION).dev
  3562.     $(SETMOD) libpng_0 $(png_1)
  3563.     $(ADDMOD) libpng_0 $(png_2)
  3564.     $(ADDMOD) libpng_0 -include zlibe libpng$(PVERSION)
  3565.  
  3566. libpng89.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ)
  3567.     $(SETMOD) libpng89 pngwio.$(OBJ)
  3568.  
  3569. libpng90.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3570.     $(SETMOD) libpng90 pngwio.$(OBJ) -include crc32
  3571.  
  3572. libpng95.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3573.     $(SETMOD) libpng95 pngwio.$(OBJ) -include crc32
  3574.  
  3575. libpng96.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3576.     $(SETMOD) libpng96 pngwio.$(OBJ) -include crc32
  3577. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3578. # This file is part of Aladdin Ghostscript.
  3579. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3580. # or distributor accepts any responsibility for the consequences of using it,
  3581. # or for whether it serves any particular purpose or works at all, unless he
  3582. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3583. # License (the "License") for full details.
  3584. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3585. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3586. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3587. # under certain conditions described in the License.  Among other things, the
  3588. # License requires that the copyright notice and this notice be preserved on
  3589. # all copies.
  3590.  
  3591. # makefile for zlib library code.
  3592.  
  3593. # This partial makefile compiles the zlib library for use in Ghostscript.
  3594. # You can get the source code for this library from:
  3595. #   ftp://ftp.uu.net/pub/archiving/zip/zlib/zlib104.zip   (zlib 1.0.4)
  3596. #        or zlib-1.0.4.tar.gz
  3597. # Please see Ghostscript's `make.txt' file for instructions about how to
  3598. # unpack these archives.
  3599.  
  3600. # Define the name of this makefile.
  3601. ZLIB_MAK=zlib.mak
  3602.  
  3603. # ZSRCDIR is defined in the platform-specific makefile, not here,
  3604. # as the directory where the zlib sources are stored.
  3605. #ZSRCDIR=zlib
  3606. ZSRC=$(ZSRCDIR)$(D)
  3607. # We would like to define
  3608. #CCCZ=$(CCC) -I$(ZSRCDIR) -Dverbose=-1
  3609. # but the Watcom C compiler has strange undocumented restrictions on what can
  3610. # follow a -D=, and it doesn't allow negative numbers.  Instead, we define
  3611. # (in gs.mak):
  3612. #CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  3613. # and handle the definition of verbose in a different, more awkward way.
  3614.  
  3615. # We keep all of the zlib code in a separate directory so as not to
  3616. # inadvertently mix it up with Aladdin Enterprises' own code.
  3617. ZDEP=$(AK)
  3618.  
  3619. # Contrary to what some portability bigots assert as fact, C compilers are
  3620. # not consistent about where they start searching for #included files:
  3621. # some always start by looking in the same directory as the .c file being
  3622. # compiled, before using the search path specified with -I on the command
  3623. # line, while others do not do this.  For this reason, we must explicitly
  3624. # copy and then delete all the .c files, because they need to obtain our
  3625. # modified version of zutil.h.  We must also copy all header files that
  3626. # reference zutil.h directly or indirectly.
  3627.  
  3628. # Code common to compression and decompression.
  3629.  
  3630. zlibc_=zutil.$(OBJ)
  3631. zlibc.dev: $(ZLIB_MAK) $(ECHOGS_XE) $(zlibc_)
  3632.     $(SETMOD) zlibc $(zlibc_)
  3633.  
  3634. zutil.h: $(ZSRC)zutil.h $(ECHOGS_XE)
  3635.     $(EXP)echogs -w zutil.h -x 23 define verbose -s - -1
  3636.     $(EXP)echogs -a zutil.h -+R $(ZSRC)zutil.h
  3637.  
  3638. zutil.$(OBJ): $(ZSRC)zutil.c $(ZDEP) zutil.h
  3639.     $(CP_) $(ZSRC)zutil.c .
  3640.     $(CCCZ) zutil.c
  3641.     $(RM_) zutil.c
  3642.  
  3643. # Encoding (compression) code.
  3644.  
  3645. deflate.h: $(ZSRC)deflate.h zutil.h
  3646.     $(CP_) $(ZSRC)deflate.h .
  3647.  
  3648. zlibe.dev: $(MAKEFILE) zlibe_$(SHARE_ZLIB).dev
  3649.     $(CP_) zlibe_$(SHARE_ZLIB).dev zlibe.dev
  3650.  
  3651. zlibe_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3652.     $(SETMOD) zlibe_1 -lib $(ZLIB_NAME)
  3653.  
  3654. zlibe_=adler32.$(OBJ) deflate.$(OBJ) trees.$(OBJ)
  3655. zlibe_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibe_)
  3656.     $(SETMOD) zlibe_0 $(zlibe_)
  3657.     $(ADDMOD) zlibe_0 -include zlibc
  3658.  
  3659. adler32.$(OBJ): $(ZSRC)adler32.c $(ZDEP)
  3660.     $(CP_) $(ZSRC)adler32.c .
  3661.     $(CCCZ) adler32.c
  3662.     $(RM_) adler32.c
  3663.  
  3664. deflate.$(OBJ): $(ZSRC)deflate.c $(ZDEP) deflate.h
  3665.     $(CP_) $(ZSRC)deflate.c .
  3666.     $(CCCZ) deflate.c
  3667.     $(RM_) deflate.c
  3668.  
  3669. trees.$(OBJ): $(ZSRC)trees.c $(ZDEP) deflate.h
  3670.     $(CP_) $(ZSRC)trees.c .
  3671.     $(CCCZ) trees.c
  3672.     $(RM_) trees.c
  3673.  
  3674. # The zlib filters per se don't need crc32, but libpng versions starting
  3675. # with 0.90 do.
  3676.  
  3677. crc32.dev: $(MAKEFILE) crc32_$(SHARE_ZLIB).dev
  3678.     $(CP_) crc32_$(SHARE_ZLIB).dev crc32.dev
  3679.  
  3680. crc32_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3681.     $(SETMOD) crc32_1 -lib $(ZLIB_NAME)
  3682.  
  3683. crc32_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) crc32.$(OBJ)
  3684.     $(SETMOD) crc32_0 crc32.$(OBJ)
  3685.  
  3686. crc32.$(OBJ): $(ZSRC)crc32.c $(ZDEP) deflate.h
  3687.     $(CP_) $(ZSRC)crc32.c .
  3688.     $(CCCZ) crc32.c
  3689.     $(RM_) crc32.c
  3690.  
  3691. # Decoding (decompression) code.
  3692.  
  3693. zlibd.dev: $(MAKEFILE) zlibd_$(SHARE_ZLIB).dev
  3694.     $(CP_) zlibd_$(SHARE_ZLIB).dev zlibd.dev
  3695.  
  3696. zlibd_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3697.     $(SETMOD) zlibd_1 -lib $(ZLIB_NAME)
  3698.  
  3699. zlibd1_=infblock.$(OBJ) infcodes.$(OBJ) inffast.$(OBJ)
  3700. zlibd2_=inflate.$(OBJ) inftrees.$(OBJ) infutil.$(OBJ)
  3701. zlibd_ = $(zlibd1_) $(zlibd2_)
  3702. zlibd_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibd_)
  3703.     $(SETMOD) zlibd_0 $(zlibd1_)
  3704.     $(ADDMOD) zlibd_0 -obj $(zlibd2_)
  3705.     $(ADDMOD) zlibd_0 -include zlibc
  3706.  
  3707. infblock.$(OBJ): $(ZSRC)infblock.c $(ZDEP) zutil.h
  3708.     $(CP_) $(ZSRC)infblock.c .
  3709.     $(CCCZ) infblock.c
  3710.     $(RM_) infblock.c
  3711.  
  3712. infcodes.$(OBJ): $(ZSRC)infcodes.c $(ZDEP) zutil.h
  3713.     $(CP_) $(ZSRC)infcodes.c .
  3714.     $(CCCZ) infcodes.c
  3715.     $(RM_) infcodes.c
  3716.  
  3717. inffast.$(OBJ): $(ZSRC)inffast.c $(ZDEP) zutil.h
  3718.     $(CP_) $(ZSRC)inffast.c .
  3719.     $(CCCZ) inffast.c
  3720.     $(RM_) inffast.c
  3721.  
  3722. inflate.$(OBJ): $(ZSRC)inflate.c $(ZDEP) zutil.h
  3723.     $(CP_) $(ZSRC)inflate.c .
  3724.     $(CCCZ) inflate.c
  3725.     $(RM_) inflate.c
  3726.  
  3727. inftrees.$(OBJ): $(ZSRC)inftrees.c $(ZDEP) zutil.h
  3728.     $(CP_) $(ZSRC)inftrees.c .
  3729.     $(CCCZ) inftrees.c
  3730.     $(RM_) inftrees.c
  3731.  
  3732. infutil.$(OBJ): $(ZSRC)infutil.c $(ZDEP) zutil.h
  3733.     $(CP_) $(ZSRC)infutil.c .
  3734.     $(CCCZ) infutil.c
  3735.     $(RM_) infutil.c
  3736. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3737. # This file is part of Aladdin Ghostscript.
  3738. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3739. # or distributor accepts any responsibility for the consequences of using it,
  3740. # or for whether it serves any particular purpose or works at all, unless he
  3741. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3742. # License (the "License") for full details.
  3743. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3744. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3745. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3746. # under certain conditions described in the License.  Among other things, the
  3747. # License requires that the copyright notice and this notice be preserved on
  3748. # all copies.
  3749.  
  3750. # makefile for device drivers.
  3751.  
  3752. # Define the name of this makefile.
  3753. DEVS_MAK=devs.mak
  3754.  
  3755. ###### --------------------------- Catalog -------------------------- ######
  3756.  
  3757. # It is possible to build configurations with an arbitrary collection of
  3758. # device drivers, although some drivers are supported only on a subset
  3759. # of the target platforms.  The currently available drivers are:
  3760.  
  3761. # MS-DOS displays (note: not usable with Desqview/X):
  3762. #   MS-DOS EGA and VGA:
  3763. #    ega    EGA (640x350, 16-color)
  3764. #    vga    VGA (640x480, 16-color)
  3765. #   MS-DOS SuperVGA:
  3766. # *    ali    SuperVGA using Avance Logic Inc. chipset, 256-color modes
  3767. # *    atiw    ATI Wonder SuperVGA, 256-color modes
  3768. # *    s3vga    SuperVGA using S3 86C911 chip (e.g., Diamond Stealth board)
  3769. #    svga16    Generic SuperVGA in 800x600, 16-color mode
  3770. # *    tseng    SuperVGA using Tseng Labs ET3000/4000 chips, 256-color modes
  3771. # *    tvga    SuperVGA using Trident chipset, 256-color modes
  3772. #   ****** NOTE: The vesa device does not work with the Watcom (32-bit MS-DOS)
  3773. #   ****** compiler or executable.
  3774. #    vesa    SuperVGA with VESA standard API driver
  3775. #   MS-DOS other:
  3776. #    bgi    Borland Graphics Interface (CGA)  [MS-DOS only]
  3777. # *    herc    Hercules Graphics display   [MS-DOS only]
  3778. # *    pe    Private Eye display
  3779. # Other displays:
  3780. #   MS Windows:
  3781. #    mswindll  Microsoft Windows 3.1 DLL  [MS Windows only]
  3782. #    mswinprn  Microsoft Windows 3.0, 3.1 DDB printer  [MS Windows only]
  3783. #    mswinpr2  Microsoft Windows 3.0, 3.1 DIB printer  [MS Windows only]
  3784. #   OS/2:
  3785. # *    os2pm    OS/2 Presentation Manager   [OS/2 only]
  3786. # *    os2dll    OS/2 DLL bitmap             [OS/2 only]
  3787. # *    os2prn    OS/2 printer                [OS/2 only]
  3788. #   Unix and VMS:
  3789. #   ****** NOTE: For direct frame buffer addressing under SCO Unix or Xenix,
  3790. #   ****** edit the definition of EGAVGA below.
  3791. # *    att3b1    AT&T 3b1/Unixpc monochrome display   [3b1 only]
  3792. # *    lvga256  Linux vgalib, 256-color VGA modes  [Linux only]
  3793. # *    sonyfb    Sony Microsystems monochrome display   [Sony only]
  3794. # *    sunview  SunView window system   [SunOS only]
  3795. # +    vgalib    Linux PC with VGALIB   [Linux only]
  3796. #    x11    X Windows version 11, release >=4   [Unix and VMS only]
  3797. #    x11alpha  X Windows masquerading as a device with alpha capability
  3798. #    x11cmyk  X Windows masquerading as a 1-bit-per-plane CMYK device
  3799. #    x11gray2  X Windows as a 2-bit gray-scale device
  3800. #    x11mono  X Windows masquerading as a black-and-white device
  3801. #   Platform-independent:
  3802. # *    sxlcrt    CRT sixels, e.g. for VT240-like terminals
  3803. # Printers:
  3804. # *    ap3250    Epson AP3250 printer
  3805. # *    appledmp  Apple Dot Matrix Printer (should also work with Imagewriter)
  3806. #    bj10e    Canon BubbleJet BJ10e
  3807. # *    bj200    Canon BubbleJet BJ200
  3808. # *    bjc600   Canon Color BubbleJet BJC-600, BJC-4000 and BJC-70
  3809. #               also good for Apple printers like the StyleWriter 2x00
  3810. # *    bjc800   Canon Color BubbleJet BJC-800
  3811. # *     ccr     CalComp Raster format
  3812. # *    cdeskjet  H-P DeskJet 500C with 1 bit/pixel color
  3813. # *    cdjcolor  H-P DeskJet 500C with 24 bit/pixel color and
  3814. #        high-quality color (Floyd-Steinberg) dithering;
  3815. #        also good for DeskJet 540C and Citizen Projet IIc (-r200x300)
  3816. # *    cdjmono  H-P DeskJet 500C printing black only;
  3817. #        also good for DeskJet 510, 520, and 540C (black only)
  3818. # *    cdj500    H-P DeskJet 500C (same as cdjcolor)
  3819. # *    cdj550    H-P DeskJet 550C/560C
  3820. # *    cp50    Mitsubishi CP50 color printer
  3821. # *    declj250  alternate DEC LJ250 driver
  3822. # +    deskjet  H-P DeskJet and DeskJet Plus
  3823. #    djet500  H-P DeskJet 500
  3824. # *    djet500c  H-P DeskJet 500C alternate driver
  3825. #        (does not work on 550C or 560C)
  3826. # *    dnj650c  H-P DesignJet 650C
  3827. #    epson    Epson-compatible dot matrix printers (9- or 24-pin)
  3828. # *    eps9mid  Epson-compatible 9-pin, interleaved lines
  3829. #        (intermediate resolution)
  3830. # *    eps9high  Epson-compatible 9-pin, interleaved lines
  3831. #        (triple resolution)
  3832. # *    epsonc    Epson LQ-2550 and Fujitsu 3400/2400/1200 color printers
  3833. # *    ibmpro  IBM 9-pin Proprinter
  3834. # *    imagen    Imagen ImPress printers
  3835. # *    iwhi    Apple Imagewriter in high-resolution mode
  3836. # *    iwlo    Apple Imagewriter in low-resolution mode
  3837. # *    iwlq    Apple Imagewriter LQ in 320 x 216 dpi mode
  3838. # *    jetp3852  IBM Jetprinter ink-jet color printer (Model #3852)
  3839. # +    laserjet  H-P LaserJet
  3840. # *    la50    DEC LA50 printer
  3841. # *    la70    DEC LA70 printer
  3842. # *    la70t    DEC LA70 printer with low-resolution text enhancement
  3843. # *    la75    DEC LA75 printer
  3844. # *    la75plus DEC LA75plus printer
  3845. # *    lbp8    Canon LBP-8II laser printer
  3846. # *    lips3    Canon LIPS III laser printer in English (CaPSL) mode
  3847. # *    ln03    DEC LN03 printer
  3848. # *    lj250    DEC LJ250 Companion color printer
  3849. # +    ljet2p    H-P LaserJet IId/IIp/III* with TIFF compression
  3850. # +    ljet3    H-P LaserJet III* with Delta Row compression
  3851. # +    ljet3d    H-P LaserJet IIID with duplex capability
  3852. # +    ljet4    H-P LaserJet 4 (defaults to 600 dpi)
  3853. # +    lj4dith  H-P LaserJet 4 with Floyd-Steinberg dithering
  3854. # +    ljetplus  H-P LaserJet Plus
  3855. #    lj5mono  H-P LaserJet 5 & 6 family (PCL XL), bitmap:
  3856. #        see below for restrictions & advice
  3857. #    lj5gray  H-P LaserJet 5 & 6 family, gray-scale bitmap;
  3858. #        see below for restrictions & advice
  3859. # *    lp2563    H-P 2563B line printer
  3860. # *    lp8000    Epson LP-8000 laser printer
  3861. # *     lq850   Epson LQ850 printer at 360 x 360 DPI resolution;
  3862. #               also good for Canon BJ300 with LQ850 emulation
  3863. # *    m8510    C.Itoh M8510 printer
  3864. # *    necp6    NEC P6/P6+/P60 printers at 360 x 360 DPI resolution
  3865. # *    nwp533  Sony Microsystems NWP533 laser printer   [Sony only]
  3866. # *    oce9050  OCE 9050 printer
  3867. # *    oki182    Okidata MicroLine 182
  3868. # *    okiibm    Okidata MicroLine IBM-compatible printers
  3869. # *    paintjet  alternate H-P PaintJet color printer
  3870. # *    pj    H-P PaintJet XL driver 
  3871. # *    pjetxl    alternate H-P PaintJet XL driver
  3872. # *    pjxl    H-P PaintJet XL color printer
  3873. # *    pjxl300  H-P PaintJet XL300 color printer;
  3874. #        also good for PaintJet 1200C
  3875. #    (pxlmono) H-P black-and-white PCL XL printers (LaserJet 5 and 6 family)
  3876. #    (pxlcolor) H-P color PCL XL printers (none available yet)
  3877. # *    r4081    Ricoh 4081 laser printer
  3878. # *    sj48    StarJet 48 inkjet printer
  3879. # *    sparc    SPARCprinter
  3880. # *    st800    Epson Stylus 800 printer
  3881. # *    stcolor    Epson Stylus Color
  3882. # *    t4693d2  Tektronix 4693d color printer, 2 bits per R/G/B component
  3883. # *    t4693d4  Tektronix 4693d color printer, 4 bits per R/G/B component
  3884. # *    t4693d8  Tektronix 4693d color printer, 8 bits per R/G/B component
  3885. # *    tek4696  Tektronix 4695/4696 inkjet plotter
  3886. # *    uniprint  Unified printer driver -- Configurable Color ESC/P-,
  3887. #        ESC/P2-, HP-RTL/PCL mono/color driver
  3888. # *    xes    Xerox XES printers (2700, 3700, 4045, etc.)
  3889. # Fax systems:
  3890. # *    dfaxhigh  DigiBoard, Inc.'s DigiFAX software format (high resolution)
  3891. # *    dfaxlow  DigiFAX low (normal) resolution
  3892. # Fax file format:
  3893. #   ****** NOTE: all of these drivers adjust the page size to match
  3894. #   ****** one of the three CCITT standard sizes (U.S. letter with A4 width,
  3895. #   ****** A4, or B4).
  3896. #    faxg3    Group 3 fax, with EOLs but no header or EOD
  3897. #    faxg32d  Group 3 2-D fax, with EOLs but no header or EOD
  3898. #    faxg4    Group 4 fax, with EOLs but no header or EOD
  3899. #    tiffcrle  TIFF "CCITT RLE 1-dim" (= Group 3 fax with no EOLs)
  3900. #    tiffg3    TIFF Group 3 fax (with EOLs)
  3901. #    tiffg32d  TIFF Group 3 2-D fax
  3902. #    tiffg4    TIFF Group 4 fax
  3903. # High-level file formats:
  3904. #    epswrite  EPS output (like PostScript Distillery)
  3905. #    pdfwrite  PDF output (like Adobe Acrobat Distiller)
  3906. #    pswrite  PostScript output (like PostScript Distillery)
  3907. #    pxlmono  Black-and-white PCL XL
  3908. #    pxlcolor  Color PCL XL
  3909. # Other raster file formats and devices:
  3910. #    bit    Plain bits, monochrome
  3911. #    bitrgb    Plain bits, RGB
  3912. #    bitcmyk  Plain bits, CMYK
  3913. #    bmpmono    Monochrome MS Windows .BMP file format
  3914. #    bmp16    4-bit (EGA/VGA) .BMP file format
  3915. #    bmp256    8-bit (256-color) .BMP file format
  3916. #    bmp16m    24-bit .BMP file format
  3917. #    cgmmono  Monochrome (black-and-white) CGM -- LOW LEVEL OUTPUT ONLY
  3918. #    cgm8    8-bit (256-color) CGM -- DITTO
  3919. #    cgm24    24-bit color CGM -- DITTO
  3920. # *    cif    CIF file format for VLSI
  3921. #    jpeg    JPEG format, RGB output
  3922. #    jpeggray  JPEG format, gray output
  3923. #    miff24    ImageMagick MIFF format, 24-bit direct color, RLE compressed
  3924. # *    mgrmono  1-bit monochrome MGR devices
  3925. # *    mgrgray2  2-bit gray scale MGR devices
  3926. # *    mgrgray4  4-bit gray scale MGR devices
  3927. # *    mgrgray8  8-bit gray scale MGR devices
  3928. # *    mgr4    4-bit (VGA) color MGR devices
  3929. # *    mgr8    8-bit color MGR devices
  3930. #    pcxmono    PCX file format, monochrome (1-bit black and white)
  3931. #    pcxgray    PCX file format, 8-bit gray scale
  3932. #    pcx16    PCX file format, 4-bit planar (EGA/VGA) color
  3933. #    pcx256    PCX file format, 8-bit chunky color
  3934. #    pcx24b    PCX file format, 24-bit color (3 8-bit planes)
  3935. #    pcxcmyk PCX file format, 4-bit chunky CMYK color
  3936. #    pbm    Portable Bitmap (plain format)
  3937. #    pbmraw    Portable Bitmap (raw format)
  3938. #    pgm    Portable Graymap (plain format)
  3939. #    pgmraw    Portable Graymap (raw format)
  3940. #    pgnm    Portable Graymap (plain format), optimizing to PBM if possible
  3941. #    pgnmraw    Portable Graymap (raw format), optimizing to PBM if possible
  3942. #    pnm    Portable Pixmap (plain format) (RGB), optimizing to PGM or PBM
  3943. #         if possible
  3944. #    pnmraw    Portable Pixmap (raw format) (RGB), optimizing to PGM or PBM
  3945. #         if possible
  3946. #    ppm    Portable Pixmap (plain format) (RGB)
  3947. #    ppmraw    Portable Pixmap (raw format) (RGB)
  3948. #    pkm    Portable inKmap (plain format) (4-bit CMYK => RGB)
  3949. #    pkmraw    Portable inKmap (raw format) (4-bit CMYK => RGB)
  3950. #    pngmono    Monochrome Portable Network Graphics (PNG)
  3951. #    pnggray    8-bit gray Portable Network Graphics (PNG)
  3952. #    png16    4-bit color Portable Network Graphics (PNG)
  3953. #    png256    8-bit color Portable Network Graphics (PNG)
  3954. #    png16m    24-bit color Portable Network Graphics (PNG)
  3955. #    psmono    PostScript (Level 1) monochrome image
  3956. #    psgray    PostScript (Level 1) 8-bit gray image
  3957. #    sgirgb    SGI RGB pixmap format
  3958. #    tiff12nc  TIFF 12-bit RGB, no compression
  3959. #    tiff24nc  TIFF 24-bit RGB, no compression (NeXT standard format)
  3960. #    tifflzw  TIFF LZW (tag = 5) (monochrome)
  3961. #    tiffpack  TIFF PackBits (tag = 32773) (monochrome)
  3962.  
  3963. # User-contributed drivers marked with * require hardware or software
  3964. # that is not available to Aladdin Enterprises.  Please contact the
  3965. # original contributors, not Aladdin Enterprises, if you have questions.
  3966. # Contact information appears in the driver entry below.
  3967. #
  3968. # Drivers marked with a + are maintained by Aladdin Enterprises with
  3969. # the assistance of users, since Aladdin Enterprises doesn't have access to
  3970. # the hardware for these either.
  3971.  
  3972. # If you add drivers, it would be nice if you kept each list
  3973. # in alphabetical order.
  3974.  
  3975. ###### ----------------------- End of catalog ----------------------- ######
  3976.  
  3977. # As noted in gs.mak, DEVICE_DEVS and DEVICE_DEVS1..15 select the devices
  3978. # that should be included in a given configuration.  By convention, these
  3979. # are used as follows.  Each of these must be limited to about 10 devices
  3980. # so as not to overflow the 120 character limit on MS-DOS command lines.
  3981. #    DEVICE_DEVS - the default device, and any display devices.
  3982. #    DEVICE_DEVS1 - additional display devices if needed.
  3983. #    DEVICE_DEVS2 - dot matrix printers.
  3984. #    DEVICE_DEVS3 - H-P monochrome printers.
  3985. #    DEVICE_DEVS4 - H-P color printers.
  3986. #    DEVICE_DEVS5 - additional H-P printers if needed.
  3987. #    DEVICE_DEVS6 - other ink-jet and laser printers.
  3988. #    DEVICE_DEVS7 - fax file formats.
  3989. #    DEVICE_DEVS8 - PCX file formats.
  3990. #    DEVICE_DEVS9 - PBM/PGM/PPM file formats.
  3991. #    DEVICE_DEVS10 - black-and-white TIFF file formats.
  3992. #    DEVICE_DEVS11 - BMP and color TIFF file formats.
  3993. #    DEVICE_DEVS12 - PostScript image and 'bit' file formats.
  3994. #    DEVICE_DEVS13 - PNG file formats.
  3995. #    DEVICE_DEVS14 - CGM, JPEG, and MIFF file formats.
  3996. #    DEVICE_DEVS15 - high-level (PostScript and PDF) file formats.
  3997. # Feel free to disregard this convention if it gets in your way.
  3998.  
  3999. # If you want to add a new device driver, the examples below should be
  4000. # enough of a guide to the correct form for the makefile rules.
  4001. # Note that all drivers other than displays must include page.dev in their
  4002. # dependencies and use $(SETPDEV) rather than $(SETDEV) in their rule bodies.
  4003.  
  4004. # All device drivers depend on the following:
  4005. GDEV=$(AK) $(ECHOGS_XE) $(gserrors_h) $(gx_h) $(gxdevice_h)
  4006.  
  4007. # "Printer" drivers depend on the following:
  4008. PDEVH=$(AK) $(gdevprn_h)
  4009.  
  4010. # Define the header files for device drivers.  Every header file used by
  4011. # more than one device driver family must be listed here.
  4012. gdev8bcm_h=gdev8bcm.h
  4013. gdevpccm_h=gdevpccm.h
  4014. gdevpcfb_h=gdevpcfb.h $(dos__h)
  4015. gdevpcl_h=gdevpcl.h
  4016. gdevsvga_h=gdevsvga.h
  4017. gdevx_h=gdevx.h
  4018.  
  4019. ###### ----------------------- Device support ----------------------- ######
  4020.  
  4021. # Provide a mapping between StandardEncoding and ISOLatin1Encoding.
  4022. gdevemap.$(OBJ): gdevemap.c $(AK) $(std_h)
  4023.  
  4024. # Implement dynamic color management for 8-bit mapped color displays.
  4025. gdev8bcm.$(OBJ): gdev8bcm.c $(AK) \
  4026.   $(gx_h) $(gxdevice_h) $(gdev8bcm_h)
  4027.  
  4028. ###### ------------------- MS-DOS display devices ------------------- ######
  4029.  
  4030. # There are really only three drivers: an EGA/VGA driver (4 bit-planes,
  4031. # plane-addressed), a SuperVGA driver (8 bit-planes, byte addressed),
  4032. # and a special driver for the S3 chip.
  4033.  
  4034. # PC display color mapping
  4035. gdevpccm.$(OBJ): gdevpccm.c $(AK) \
  4036.   $(gx_h) $(gsmatrix_h) $(gxdevice_h) $(gdevpccm_h)
  4037.  
  4038. ### ----------------------- EGA and VGA displays ----------------------- ###
  4039.  
  4040. # The shared MS-DOS makefile defines PCFBASM as either gdevegaa.$(OBJ)
  4041. # or an empty string.
  4042.  
  4043. gdevegaa.$(OBJ): gdevegaa.asm
  4044.  
  4045. # NOTE: for direct frame buffer addressing under SCO Unix or Xenix,
  4046. # change gdevevga to gdevsco in the following line.  Also, since
  4047. # SCO's /bin/as does not support the "out" instructions, you must build
  4048. # the gnu assembler and have it on your path as "as".
  4049. EGAVGA=gdevevga.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4050. #EGAVGA=gdevsco.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4051.  
  4052. gdevevga.$(OBJ): gdevevga.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4053.     $(CCD) gdevevga.c
  4054.  
  4055. gdevsco.$(OBJ): gdevsco.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4056.  
  4057. # Common code for MS-DOS and SCO.
  4058. gdevpcfb.$(OBJ): gdevpcfb.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4059.  $(gdevpccm_h) $(gdevpcfb_h) $(gsparam_h)
  4060.     $(CCD) gdevpcfb.c
  4061.  
  4062. # The EGA/VGA family includes EGA and VGA.  Many SuperVGAs in 800x600,
  4063. # 16-color mode can share the same code; see the next section below.
  4064.  
  4065. ega.dev: $(EGAVGA)
  4066.     $(SETDEV) ega $(EGAVGA)
  4067.  
  4068. vga.dev: $(EGAVGA)
  4069.     $(SETDEV) vga $(EGAVGA)
  4070.  
  4071. ### ------------------------- SuperVGA displays ------------------------ ###
  4072.  
  4073. # SuperVGA displays in 16-color, 800x600 mode are really just slightly
  4074. # glorified VGA's, so we can handle them all with a single driver.
  4075. # The way to select them on the command line is with
  4076. #    -sDEVICE=svga16 -dDisplayMode=NNN
  4077. # where NNN is the display mode in decimal.  See use.txt for the modes
  4078. # for some popular display chipsets.
  4079.  
  4080. svga16.dev: $(EGAVGA)
  4081.     $(SETDEV) svga16 $(EGAVGA)
  4082.  
  4083. # More capable SuperVGAs have a wide variety of slightly differing
  4084. # interfaces, so we need a separate driver for each one.
  4085.  
  4086. SVGA=gdevsvga.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4087.  
  4088. gdevsvga.$(OBJ): gdevsvga.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4089.  $(gsparam_h) $(gxarith_h) $(gdevpccm_h) $(gdevpcfb_h) $(gdevsvga_h)
  4090.     $(CCD) gdevsvga.c
  4091.  
  4092. # The SuperVGA family includes: Avance Logic Inc., ATI Wonder, S3,
  4093. # Trident, Tseng ET3000/4000, and VESA.
  4094.  
  4095. ali.dev: $(SVGA)
  4096.     $(SETDEV) ali $(SVGA)
  4097.  
  4098. atiw.dev: $(SVGA)
  4099.     $(SETDEV) atiw $(SVGA)
  4100.  
  4101. tseng.dev: $(SVGA)
  4102.     $(SETDEV) tseng $(SVGA)
  4103.  
  4104. tvga.dev: $(SVGA)
  4105.     $(SETDEV) tvga $(SVGA)
  4106.  
  4107. vesa.dev: $(SVGA)
  4108.     $(SETDEV) vesa $(SVGA)
  4109.  
  4110. # The S3 driver doesn't share much code with the others.
  4111.  
  4112. s3vga_=gdevs3ga.$(OBJ) gdevsvga.$(OBJ) gdevpccm.$(OBJ)
  4113. s3vga.dev: $(SVGA) $(s3vga_)
  4114.     $(SETDEV) s3vga $(SVGA)
  4115.     $(ADDMOD) s3vga -obj $(s3vga_)
  4116.  
  4117. gdevs3ga.$(OBJ): gdevs3ga.c $(GDEV) $(gdevpcfb_h) $(gdevsvga_h)
  4118.     $(CCD) gdevs3ga.c
  4119.  
  4120. ### ------------ The BGI (Borland Graphics Interface) device ----------- ###
  4121.  
  4122. cgaf.$(OBJ): $(BGIDIR)\cga.bgi
  4123.     $(BGIDIR)\bgiobj /F $(BGIDIR)\cga
  4124.  
  4125. egavgaf.$(OBJ): $(BGIDIR)\egavga.bgi
  4126.     $(BGIDIR)\bgiobj /F $(BGIDIR)\egavga
  4127.  
  4128. # Include egavgaf.$(OBJ) for debugging only.
  4129. bgi_=gdevbgi.$(OBJ) cgaf.$(OBJ)
  4130. bgi.dev: $(bgi_)
  4131.     $(SETDEV) bgi $(bgi_)
  4132.     $(ADDMOD) bgi -lib $(LIBDIR)\graphics
  4133.  
  4134. gdevbgi.$(OBJ): gdevbgi.c $(GDEV) $(MAKEFILE) $(gxxfont_h)
  4135.     $(CCC) -DBGI_LIB="$(BGIDIRSTR)" gdevbgi.c
  4136.  
  4137. ### ------------------- The Hercules Graphics display ------------------- ###
  4138.  
  4139. herc_=gdevherc.$(OBJ)
  4140. herc.dev: $(herc_)
  4141.     $(SETDEV) herc $(herc_)
  4142.  
  4143. gdevherc.$(OBJ): gdevherc.c $(GDEV) $(dos__h) $(gsmatrix_h) $(gxbitmap_h)
  4144.     $(CCC) gdevherc.c
  4145.  
  4146. ### ---------------------- The Private Eye display ---------------------- ###
  4147. ### Note: this driver was contributed by a user:                          ###
  4148. ###   please contact narf@media-lab.media.mit.edu if you have questions.  ###
  4149.  
  4150. pe_=gdevpe.$(OBJ)
  4151. pe.dev: $(pe_)
  4152.     $(SETDEV) pe $(pe_)
  4153.  
  4154. gdevpe.$(OBJ): gdevpe.c $(GDEV) $(memory__h)
  4155.  
  4156. ###### ----------------------- Other displays ------------------------ ######
  4157.  
  4158. ### -------------------- The MS-Windows 3.n DLL ------------------------- ###
  4159.  
  4160. gsdll_h=gsdll.h
  4161.  
  4162. gdevmswn_h=gdevmswn.h $(GDEV)\
  4163.  $(dos__h) $(memory__h) $(string__h) $(windows__h)\
  4164.  gp_mswin.h
  4165.  
  4166. gdevmswn.$(OBJ): gdevmswn.c $(gdevmswn_h) $(gp_h) $(gpcheck_h) \
  4167.  $(gsdll_h) $(gsparam_h) $(gdevpccm_h)
  4168.  
  4169. gdevmsxf.$(OBJ): gdevmsxf.c $(ctype__h) $(math__h) $(memory__h) $(string__h)\
  4170.  $(gdevmswn_h) $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4171.  
  4172. # An implementation using a DIB filled by an image device.
  4173. gdevwdib.$(OBJ): gdevwdib.c $(gdevmswn_h) $(gsdll_h) $(gxdevmem_h)
  4174.  
  4175. mswindll_=gdevmswn.$(OBJ) gdevmsxf.$(OBJ) gdevwdib.$(OBJ) \
  4176.   gdevemap.$(OBJ) gdevpccm.$(OBJ)
  4177. mswindll.dev: $(mswindll_)
  4178.     $(SETDEV) mswindll $(mswindll_)
  4179.  
  4180. ### -------------------- The MS-Windows DDB 3.n printer ----------------- ###
  4181.  
  4182. mswinprn_=gdevwprn.$(OBJ) gdevmsxf.$(OBJ)
  4183. mswinprn.dev: $(mswinprn_)
  4184.     $(SETDEV) mswinprn $(mswinprn_)
  4185.  
  4186. gdevwprn.$(OBJ): gdevwprn.c $(gdevmswn_h) $(gp_h)
  4187.  
  4188. ### -------------------- The MS-Windows DIB 3.n printer ----------------- ###
  4189.  
  4190. mswinpr2_=gdevwpr2.$(OBJ)
  4191. mswinpr2.dev: $(mswinpr2_) page.dev
  4192.     $(SETPDEV) mswinpr2 $(mswinpr2_)
  4193.  
  4194. gdevwpr2.$(OBJ): gdevwpr2.c $(PDEVH) $(windows__h)\
  4195.  $(gdevpccm_h) $(gp_h) gp_mswin.h
  4196.  
  4197. ### ------------------ OS/2 Presentation Manager device ----------------- ###
  4198.  
  4199. os2pm_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4200. os2pm.dev: $(os2pm_)
  4201.     $(SETDEV) os2pm $(os2pm_)
  4202.  
  4203. os2dll_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4204. os2dll.dev: $(os2dll_)
  4205.     $(SETDEV) os2dll $(os2dll_)
  4206.  
  4207. gdevpm.$(OBJ): gdevpm.c $(string__h)\
  4208.  $(gp_h) $(gpcheck_h)\
  4209.  $(gsdll_h) $(gserrors_h) $(gsexit_h) $(gsparam_h)\
  4210.  $(gx_h) $(gxdevice_h) $(gxdevmem_h)\
  4211.  $(gdevpccm_h) gdevpm.h
  4212.  
  4213. ### --------------------------- The OS/2 printer ------------------------ ###
  4214.  
  4215. os2prn_=gdevos2p.$(OBJ)
  4216. os2prn.dev: $(os2prn_) page.dev
  4217.     $(SETPDEV) os2prn $(os2prn_)
  4218.  
  4219. os2prn.$(OBJ): os2prn.c $(gp_h)
  4220.  
  4221. ### -------------- The AT&T 3b1 Unixpc monochrome display --------------- ###
  4222. ### Note: this driver was contributed by a user: please contact           ###
  4223. ###       Andy Fyfe (andy@cs.caltech.edu) if you have questions.          ###
  4224.  
  4225. att3b1_=gdev3b1.$(OBJ)
  4226. att3b1.dev: $(att3b1_)
  4227.     $(SETDEV) att3b1 $(att3b1_)
  4228.  
  4229. gdev3b1.$(OBJ): gdev3b1.c $(GDEV)
  4230.  
  4231. ### ---------------------- Linux PC with vgalib ------------------------- ###
  4232. ### Note: these drivers were contributed by users.                        ###
  4233. ### For questions about the lvga256 driver, please contact                ###
  4234. ###       Ludger Kunz (ludger.kunz@fernuni-hagen.de).                     ###
  4235. ### For questions about the vgalib driver, please contact                 ###
  4236. ###       Erik Talvola (talvola@gnu.ai.mit.edu).                          ###
  4237.  
  4238. lvga256_=gdevl256.$(OBJ)
  4239. lvga256.dev: $(lvga256_)
  4240.     $(SETDEV) lvga256 $(lvga256_)
  4241.     $(ADDMOD) lvga256 -lib vga vgagl
  4242.  
  4243. gdevl256.$(OBJ): gdevl256.c $(GDEV)
  4244.  
  4245. vgalib_=gdevvglb.$(OBJ) gdevpccm.$(OBJ)
  4246. vgalib.dev: $(vgalib_)
  4247.     $(SETDEV) vgalib $(vgalib_)
  4248.     $(ADDMOD) vgalib -lib vga
  4249.  
  4250. gdevvglb.$(OBJ): gdevvglb.c $(GDEV) $(gdevpccm_h) $(gsparam_h)
  4251.  
  4252. ### ------------------- Sony NeWS frame buffer device ------------------ ###
  4253. ### Note: this driver was contributed by a user: please contact          ###
  4254. ###       Mike Smolenski (mike@intertech.com) if you have questions.     ###
  4255.  
  4256. # This is implemented as a 'printer' device.
  4257. sonyfb_=gdevsnfb.$(OBJ)
  4258. sonyfb.dev: $(sonyfb_) page.dev
  4259.     $(SETPDEV) sonyfb $(sonyfb_)
  4260.  
  4261. gdevsnfb.$(OBJ): gdevsnfb.c $(PDEVH)
  4262.  
  4263. ### ------------------------ The SunView device ------------------------ ###
  4264. ### Note: this driver is maintained by a user: if you have questions,    ###
  4265. ###       please contact Andreas Stolcke (stolcke@icsi.berkeley.edu).    ###
  4266.  
  4267. sunview_=gdevsun.$(OBJ)
  4268. sunview.dev: $(sunview_)
  4269.     $(SETDEV) sunview $(sunview_)
  4270.     $(ADDMOD) sunview -lib suntool sunwindow pixrect
  4271.  
  4272. gdevsun.$(OBJ): gdevsun.c $(GDEV) $(malloc__h)\
  4273.  $(gscdefs_h) $(gserrors_h) $(gsmatrix_h)
  4274.  
  4275. ### -------------------------- The X11 device -------------------------- ###
  4276.  
  4277. # Aladdin Enterprises does not support Ghostview.  For more information
  4278. # about Ghostview, please contact Tim Theisen (ghostview@cs.wisc.edu).
  4279.  
  4280. # See the main makefile for the definition of XLIBS.
  4281. x11_=gdevx.$(OBJ) gdevxini.$(OBJ) gdevxxf.$(OBJ) gdevemap.$(OBJ)
  4282. x11.dev: $(x11_)
  4283.     $(SETDEV) x11 $(x11_)
  4284.     $(ADDMOD) x11 -lib $(XLIBS)
  4285.  
  4286. # See the main makefile for the definition of XINCLUDE.
  4287. GDEVX=$(GDEV) x_.h gdevx.h $(MAKEFILE)
  4288. gdevx.$(OBJ): gdevx.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4289.     $(CCC) $(XINCLUDE) gdevx.c
  4290.  
  4291. gdevxini.$(OBJ): gdevxini.c $(GDEVX) $(math__h) $(memory__h) $(gserrors_h)
  4292.     $(CCC) $(XINCLUDE) gdevxini.c
  4293.  
  4294. gdevxxf.$(OBJ): gdevxxf.c $(GDEVX) $(math__h) $(memory__h)\
  4295.  $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4296.     $(CCC) $(XINCLUDE) gdevxxf.c
  4297.  
  4298. # Alternate X11-based devices to help debug other drivers.
  4299. # x11alpha pretends to have 4 bits of alpha channel.
  4300. # x11cmyk pretends to be a CMYK device with 1 bit each of C,M,Y,K.
  4301. # x11gray2 pretends to be a 2-bit gray-scale device.
  4302. # x11mono pretends to be a black-and-white device.
  4303. x11alt_=$(x11_) gdevxalt.$(OBJ)
  4304. x11alpha.dev: $(x11alt_)
  4305.     $(SETDEV) x11alpha $(x11alt_)
  4306.     $(ADDMOD) x11alpha -lib $(XLIBS)
  4307.  
  4308. x11cmyk.dev: $(x11alt_)
  4309.     $(SETDEV) x11cmyk $(x11alt_)
  4310.     $(ADDMOD) x11cmyk -lib $(XLIBS)
  4311.  
  4312. x11gray2.dev: $(x11alt_)
  4313.     $(SETDEV) x11gray2 $(x11alt_)
  4314.     $(ADDMOD) x11gray2 -lib $(XLIBS)
  4315.  
  4316. x11mono.dev: $(x11alt_)
  4317.     $(SETDEV) x11mono $(x11alt_)
  4318.     $(ADDMOD) x11mono -lib $(XLIBS)
  4319.  
  4320. gdevxalt.$(OBJ): gdevxalt.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4321.     $(CCC) $(XINCLUDE) gdevxalt.c
  4322.  
  4323. ### ------------------------- DEC sixel displays ------------------------ ###
  4324. ### Note: this driver was contributed by a user: please contact           ###
  4325. ###   Phil Keegstra (keegstra@tonga.gsfc.nasa.gov) if you have questions. ###
  4326.  
  4327. # This is a "printer" device, but it probably shouldn't be.
  4328. # I don't know why the implementor chose to do it this way.
  4329. sxlcrt_=gdevln03.$(OBJ)
  4330. sxlcrt.dev: $(sxlcrt_) page.dev
  4331.     $(SETPDEV) sxlcrt $(sxlcrt_)
  4332.  
  4333. ###### --------------- Memory-buffered printer devices --------------- ######
  4334.  
  4335. ### --------------------- The Apple printer devices --------------------- ###
  4336. ### Note: these drivers were contributed by users.                        ###
  4337. ###   If you have questions about the DMP driver, please contact          ###
  4338. ###    Mark Wedel (master@cats.ucsc.edu).                                ###
  4339. ###   If you have questions about the Imagewriter drivers, please contact ###
  4340. ###    Jonathan Luckey (luckey@rtfm.mlb.fl.us).                          ###
  4341. ###   If you have questions about the Imagewriter LQ driver, please       ###
  4342. ###    contact Scott Barker (barkers@cuug.ab.ca).                        ###
  4343.  
  4344. appledmp_=gdevadmp.$(OBJ)
  4345.  
  4346. gdevadmp.$(OBJ): gdevadmp.c $(PDEVH)
  4347.  
  4348. appledmp.dev: $(appledmp_) page.dev
  4349.     $(SETPDEV) appledmp $(appledmp_)
  4350.  
  4351. iwhi.dev: $(appledmp_) page.dev
  4352.     $(SETPDEV) iwhi $(appledmp_)
  4353.  
  4354. iwlo.dev: $(appledmp_) page.dev
  4355.     $(SETPDEV) iwlo $(appledmp_)
  4356.  
  4357. iwlq.dev: $(appledmp_) page.dev
  4358.     $(SETPDEV) iwlq $(appledmp_)
  4359.  
  4360. ### ------------ The Canon BubbleJet BJ10e and BJ200 devices ------------ ###
  4361.  
  4362. bj10e_=gdevbj10.$(OBJ)
  4363.  
  4364. bj10e.dev: $(bj10e_) page.dev
  4365.     $(SETPDEV) bj10e $(bj10e_)
  4366.  
  4367. bj200.dev: $(bj10e_) page.dev
  4368.     $(SETPDEV) bj200 $(bj10e_)
  4369.  
  4370. gdevbj10.$(OBJ): gdevbj10.c $(PDEVH)
  4371.  
  4372. ### ------------- The CalComp Raster Format ----------------------------- ###
  4373. ### Note: this driver was contributed by a user: please contact           ###
  4374. ###       Ernst Muellner (ernst.muellner@oenzl.siemens.de) if you have    ###
  4375. ###       questions.                                                      ###
  4376.  
  4377. ccr_=gdevccr.$(OBJ)
  4378. ccr.dev: $(ccr_) page.dev
  4379.     $(SETPDEV) ccr $(ccr_)
  4380.  
  4381. gdevccr.$(OBJ): gdevccr.c $(PDEVH)
  4382.  
  4383. ### ----------- The H-P DeskJet and LaserJet printer devices ----------- ###
  4384.  
  4385. ### These are essentially the same device.
  4386. ### NOTE: printing at full resolution (300 DPI) requires a printer
  4387. ###   with at least 1.5 Mb of memory.  150 DPI only requires .5 Mb.
  4388. ### Note that the lj4dith driver is included with the H-P color printer
  4389. ###   drivers below.
  4390.  
  4391. HPPCL=gdevpcl.$(OBJ)
  4392. HPMONO=gdevdjet.$(OBJ) $(HPPCL)
  4393.  
  4394. gdevpcl.$(OBJ): gdevpcl.c $(PDEVH) $(gdevpcl_h)
  4395.  
  4396. gdevdjet.$(OBJ): gdevdjet.c $(PDEVH) $(gdevpcl_h)
  4397.  
  4398. deskjet.dev: $(HPMONO) page.dev
  4399.     $(SETPDEV) deskjet $(HPMONO)
  4400.  
  4401. djet500.dev: $(HPMONO) page.dev
  4402.     $(SETPDEV) djet500 $(HPMONO)
  4403.  
  4404. laserjet.dev: $(HPMONO) page.dev
  4405.     $(SETPDEV) laserjet $(HPMONO)
  4406.  
  4407. ljetplus.dev: $(HPMONO) page.dev
  4408.     $(SETPDEV) ljetplus $(HPMONO)
  4409.  
  4410. ### Selecting ljet2p provides TIFF (mode 2) compression on LaserJet III,
  4411. ### IIIp, IIId, IIIsi, IId, and IIp. 
  4412.  
  4413. ljet2p.dev: $(HPMONO) page.dev
  4414.     $(SETPDEV) ljet2p $(HPMONO)
  4415.  
  4416. ### Selecting ljet3 provides Delta Row (mode 3) compression on LaserJet III,
  4417. ### IIIp, IIId, IIIsi.
  4418.  
  4419. ljet3.dev: $(HPMONO) page.dev
  4420.     $(SETPDEV) ljet3 $(HPMONO)
  4421.  
  4422. ### Selecting ljet3d also provides duplex printing capability.
  4423.  
  4424. ljet3d.dev: $(HPMONO) page.dev
  4425.     $(SETPDEV) ljet3d $(HPMONO)
  4426.  
  4427. ### Selecting ljet4 also provides Delta Row compression on LaserJet IV series.
  4428.  
  4429. ljet4.dev: $(HPMONO) page.dev
  4430.     $(SETPDEV) ljet4 $(HPMONO)
  4431.  
  4432. lp2563.dev: $(HPMONO) page.dev
  4433.     $(SETPDEV) lp2563 $(HPMONO)
  4434.  
  4435. oce9050.dev: $(HPMONO) page.dev
  4436.     $(SETPDEV) oce9050 $(HPMONO)
  4437.  
  4438. ### ------------------ The H-P LaserJet 5 and 6 devices ----------------- ###
  4439.  
  4440. ### These drivers use H-P's new PCL XL printer language, like H-P's
  4441. ### LaserJet 5 Enhanced driver for MS Windows.  We don't recommend using
  4442. ### them:
  4443. ###    - If you have a LJ5L, which isn't a "real" LaserJet 5, use the
  4444. ###    ljet4 driver instead.  (The lj5 drivers won't work.)
  4445. ###    - If you have any other model of LJ 5 or 6, use the pxlmono
  4446. ###    driver, which often produces much more compact output.
  4447.  
  4448. gdevpxat_h=gdevpxat.h
  4449. gdevpxen_h=gdevpxen.h
  4450. gdevpxop_h=gdevpxop.h
  4451.  
  4452. ljet5_=gdevlj56.$(OBJ) $(HPPCL)
  4453. lj5mono.dev: $(ljet5_) page.dev
  4454.     $(SETPDEV) lj5mono $(ljet5_)
  4455.  
  4456. lj5gray.dev: $(ljet5_) page.dev
  4457.     $(SETPDEV) lj5gray $(ljet5_)
  4458.  
  4459. gdevlj56.$(OBJ): gdevlj56.c $(PDEVH) $(gdevpcl_h)\
  4460.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h)
  4461.  
  4462. ### The H-P DeskJet, PaintJet, and DesignJet family color printer devices.###
  4463. ### Note: there are two different 500C drivers, both contributed by users.###
  4464. ###   If you have questions about the djet500c driver,                    ###
  4465. ###       please contact AKayser@et.tudelft.nl.                           ###
  4466. ###   If you have questions about the cdj* drivers,                       ###
  4467. ###       please contact g.cameron@biomed.abdn.ac.uk.                     ###
  4468. ###   If you have questions about the dnj560c driver,                     ###
  4469. ###       please contact koert@zen.cais.com.                              ###
  4470. ###   If you have questions about the lj4dith driver,                     ###
  4471. ###       please contact Eckhard.Rueggeberg@ts.go.dlr.de.                 ###
  4472. ###   If you have questions about the BJC600/BJC4000, BJC800, or ESCP     ###
  4473. ###       drivers, please contact Yves.Arrouye@imag.fr.                   ###
  4474.  
  4475. cdeskjet_=gdevcdj.$(OBJ) $(HPPCL)
  4476.  
  4477. cdeskjet.dev: $(cdeskjet_) page.dev
  4478.     $(SETPDEV) cdeskjet $(cdeskjet_)
  4479.  
  4480. cdjcolor.dev: $(cdeskjet_) page.dev
  4481.     $(SETPDEV) cdjcolor $(cdeskjet_)
  4482.  
  4483. cdjmono.dev: $(cdeskjet_) page.dev
  4484.     $(SETPDEV) cdjmono $(cdeskjet_)
  4485.  
  4486. cdj500.dev: $(cdeskjet_) page.dev
  4487.     $(SETPDEV) cdj500 $(cdeskjet_)
  4488.  
  4489. cdj550.dev: $(cdeskjet_) page.dev
  4490.     $(SETPDEV) cdj550 $(cdeskjet_)
  4491.  
  4492. declj250.dev: $(cdeskjet_) page.dev
  4493.     $(SETPDEV) declj250 $(cdeskjet_)
  4494.  
  4495. dnj650c.dev: $(cdeskjet_) page.dev
  4496.     $(SETPDEV) dnj650c $(cdeskjet_)
  4497.  
  4498. lj4dith.dev: $(cdeskjet_) page.dev
  4499.     $(SETPDEV) lj4dith $(cdeskjet_)
  4500.  
  4501. pj.dev: $(cdeskjet_) page.dev
  4502.     $(SETPDEV) pj $(cdeskjet_)
  4503.  
  4504. pjxl.dev: $(cdeskjet_) page.dev
  4505.     $(SETPDEV) pjxl $(cdeskjet_)
  4506.  
  4507. pjxl300.dev: $(cdeskjet_) page.dev
  4508.     $(SETPDEV) pjxl300 $(cdeskjet_)
  4509.  
  4510. # Note: the BJC600 driver also works for the BJC4000.
  4511. bjc600.dev: $(cdeskjet_) page.dev
  4512.     $(SETPDEV) bjc600 $(cdeskjet_)
  4513.  
  4514. bjc800.dev: $(cdeskjet_) page.dev
  4515.     $(SETPDEV) bjc800 $(cdeskjet_)
  4516.  
  4517. escp.dev: $(cdeskjet_) page.dev
  4518.     $(SETPDEV) escp $(cdeskjet_)
  4519.  
  4520. # NB: you can also customise the build if required, using
  4521. # -DBitsPerPixel=<number> if you wish the default to be other than 24
  4522. # for the generic drivers (cdj500, cdj550, pjxl300, pjtest, pjxltest).
  4523. gdevcdj.$(OBJ): gdevcdj.c $(std_h) $(PDEVH) gdevbjc.h\
  4524.  $(gsparam_h) $(gsstate_h) $(gxlum_h)\
  4525.  $(gdevpcl_h)
  4526.  
  4527. djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
  4528. djet500c.dev: $(djet500c_) page.dev
  4529.     $(SETPDEV) djet500c $(djet500c_)
  4530.  
  4531. gdevdjtc.$(OBJ): gdevdjtc.c $(PDEVH) $(malloc__h) $(gdevpcl_h)
  4532.  
  4533. ### -------------------- The Mitsubishi CP50 printer -------------------- ###
  4534. ### Note: this driver was contributed by a user: please contact           ###
  4535. ###       Michael Hu (michael@ximage.com) if you have questions.          ###
  4536.  
  4537. cp50_=gdevcp50.$(OBJ)
  4538. cp50.dev: $(cp50_) page.dev
  4539.     $(SETPDEV) cp50 $(cp50_)
  4540.  
  4541. gdevcp50.$(OBJ): gdevcp50.c $(PDEVH)
  4542.  
  4543. ### ----------------- The generic Epson printer device ----------------- ###
  4544. ### Note: most of this code was contributed by users.  Please contact    ###
  4545. ###       the following people if you have questions:                    ###
  4546. ###   eps9mid - Guenther Thomsen (thomsen@cs.tu-berlin.de)               ###
  4547. ###   eps9high - David Wexelblat (dwex@mtgzfs3.att.com)                  ###
  4548. ###   ibmpro - James W. Birdsall (jwbirdsa@picarefy.picarefy.com)        ###
  4549.  
  4550. epson_=gdevepsn.$(OBJ)
  4551.  
  4552. epson.dev: $(epson_) page.dev
  4553.     $(SETPDEV) epson $(epson_)
  4554.  
  4555. eps9mid.dev: $(epson_) page.dev
  4556.     $(SETPDEV) eps9mid $(epson_)
  4557.  
  4558. eps9high.dev: $(epson_) page.dev
  4559.     $(SETPDEV) eps9high $(epson_)
  4560.  
  4561. gdevepsn.$(OBJ): gdevepsn.c $(PDEVH)
  4562.  
  4563. ### ----------------- The IBM Proprinter printer device ---------------- ###
  4564.  
  4565. ibmpro.dev: $(epson_) page.dev
  4566.     $(SETPDEV) ibmpro $(epson_)
  4567.  
  4568. ### -------------- The Epson LQ-2550 color printer device -------------- ###
  4569. ### Note: this driver was contributed by users: please contact           ###
  4570. ###       Dave St. Clair (dave@exlog.com) if you have questions.         ###
  4571.  
  4572. epsonc_=gdevepsc.$(OBJ)
  4573. epsonc.dev: $(epsonc_) page.dev
  4574.     $(SETPDEV) epsonc $(epsonc_)
  4575.  
  4576. gdevepsc.$(OBJ): gdevepsc.c $(PDEVH)
  4577.  
  4578. ### ------------- The Epson ESC/P 2 language printer devices ------------- ###
  4579. ### Note: these drivers were contributed by users.                         ###
  4580. ### For questions about the Stylus 800 and AP3250 drivers, please contact  ###
  4581. ###        Richard Brown (rab@tauon.ph.unimelb.edu.au).                    ###
  4582. ### For questions about the Stylus Color drivers, please contact           ###
  4583. ###        Gunther Hess (gunther@elmos.de).                                ###
  4584.  
  4585. ESCP2=gdevescp.$(OBJ)
  4586.  
  4587. gdevescp.$(OBJ): gdevescp.c $(PDEVH)
  4588.  
  4589. ap3250.dev: $(ESCP2) page.dev
  4590.     $(SETPDEV) ap3250 $(ESCP2)
  4591.  
  4592. st800.dev: $(ESCP2) page.dev
  4593.     $(SETPDEV) st800 $(ESCP2)
  4594.  
  4595. stcolor1_=gdevstc.$(OBJ) gdevstc1.$(OBJ) gdevstc2.$(OBJ)
  4596. stcolor2_=gdevstc3.$(OBJ) gdevstc4.$(OBJ)
  4597. stcolor.dev: $(stcolor1_) $(stcolor2_) page.dev
  4598.     $(SETPDEV) stcolor $(stcolor1_)
  4599.     $(ADDMOD) stcolor -obj $(stcolor2_)
  4600.  
  4601. gdevstc.$(OBJ): gdevstc.c gdevstc.h $(PDEVH)
  4602.  
  4603. gdevstc1.$(OBJ): gdevstc1.c gdevstc.h $(PDEVH)
  4604.  
  4605. gdevstc2.$(OBJ): gdevstc2.c gdevstc.h $(PDEVH)
  4606.  
  4607. gdevstc3.$(OBJ): gdevstc3.c gdevstc.h $(PDEVH)
  4608.  
  4609. gdevstc4.$(OBJ): gdevstc4.c gdevstc.h $(PDEVH)
  4610.  
  4611. ### --------------- Ugly/Update -> Unified Printer Driver ---------------- ###
  4612. ### For questions about this driver, please contact:                       ###
  4613. ###        Gunther Hess (gunther@elmos.de)                                 ###
  4614.  
  4615. uniprint_=gdevupd.$(OBJ)
  4616. uniprint.dev: $(uniprint_) page.dev
  4617.     $(SETPDEV) uniprint $(uniprint_)
  4618.  
  4619. gdevupd.$(OBJ): gdevupd.c $(PDEVH) $(gsparam_h)
  4620.  
  4621. ### -------------- cdj850 - HP 850c Driver under development ------------- ###
  4622. ### Since this driver is in the development-phase it is not distributed    ###
  4623. ### with ghostscript, but it is available via anonymous ftp from:          ###
  4624. ###                        ftp://bonk.ethz.ch                              ###
  4625. ### For questions about this driver, please contact:                       ###
  4626. ###       Uli Wortmann (E-Mail address inside the driver-package)          ###
  4627.  
  4628. cdeskjet8_=gdevcd8.$(OBJ) $(HPPCL)
  4629.  
  4630. cdj850.dev: $(cdeskjet8_) page.dev
  4631.     $(SETPDEV) cdj850 $(cdeskjet8_)
  4632.  
  4633. ### ------------ The H-P PaintJet color printer device ----------------- ###
  4634. ### Note: this driver also supports the DEC LJ250 color printer, which   ###
  4635. ###       has a PaintJet-compatible mode, and the PaintJet XL.           ###
  4636. ### If you have questions about the XL, please contact Rob Reiss         ###
  4637. ###       (rob@moray.berkeley.edu).                                      ###
  4638.  
  4639. PJET=gdevpjet.$(OBJ) $(HPPCL)
  4640.  
  4641. gdevpjet.$(OBJ): gdevpjet.c $(PDEVH) $(gdevpcl_h)
  4642.  
  4643. lj250.dev: $(PJET) page.dev
  4644.     $(SETPDEV) lj250 $(PJET)
  4645.  
  4646. paintjet.dev: $(PJET) page.dev
  4647.     $(SETPDEV) paintjet $(PJET)
  4648.  
  4649. pjetxl.dev: $(PJET) page.dev
  4650.     $(SETPDEV) pjetxl $(PJET)
  4651.  
  4652. ### -------------- Imagen ImPress Laser Printer device ----------------- ###
  4653. ### Note: this driver was contributed by a user: please contact          ###
  4654. ###       Alan Millar (AMillar@bolis.sf-bay.org) if you have questions.  ###
  4655. ### Set USE_BYTE_STREAM if using parallel interface;                     ###
  4656. ### Don't set it if using 'ipr' spooler (default).                       ###
  4657. ### You may also add -DA4 if needed for A4 paper.             ###
  4658.  
  4659. imagen_=gdevimgn.$(OBJ)
  4660. imagen.dev: $(imagen_) page.dev
  4661.     $(SETPDEV) imagen $(imagen_)
  4662.  
  4663. gdevimgn.$(OBJ): gdevimgn.c $(PDEVH)
  4664.     $(CCC) gdevimgn.c            # for ipr spooler
  4665. #    $(CCC) -DUSE_BYTE_STREAM gdevimgn.c    # for parallel
  4666.  
  4667. ### ------- The IBM 3852 JetPrinter color inkjet printer device -------- ###
  4668. ### Note: this driver was contributed by users: please contact           ###
  4669. ###       Kevin Gift (kgift@draper.com) if you have questions.           ###
  4670. ### Note that the paper size that can be addressed by the graphics mode  ###
  4671. ###   used in this driver is fixed at 7-1/2 inches wide (the printable   ###
  4672. ###   width of the jetprinter itself.)                                   ###
  4673.  
  4674. jetp3852_=gdev3852.$(OBJ)
  4675. jetp3852.dev: $(jetp3852_) page.dev
  4676.     $(SETPDEV) jetp3852 $(jetp3852_)
  4677.  
  4678. gdev3852.$(OBJ): gdev3852.c $(PDEVH) $(gdevpcl_h)
  4679.  
  4680. ### ---------- The Canon LBP-8II and LIPS III printer devices ---------- ###
  4681. ### Note: these drivers were contributed by users.                       ###
  4682. ### For questions about these drivers, please contact                    ###
  4683. ###       Lauri Paatero, lauri.paatero@paatero.pp.fi                     ###
  4684.  
  4685. lbp8_=gdevlbp8.$(OBJ)
  4686. lbp8.dev: $(lbp8_) page.dev
  4687.     $(SETPDEV) lbp8 $(lbp8_)
  4688.  
  4689. lips3.dev: $(lbp8_) page.dev
  4690.     $(SETPDEV) lips3 $(lbp8_)
  4691.  
  4692. gdevlbp8.$(OBJ): gdevlbp8.c $(PDEVH)
  4693.  
  4694. ### ----------- The DEC LN03/LA50/LA70/LA75 printer devices ------------ ###
  4695. ### Note: this driver was contributed by users: please contact           ###
  4696. ###       Ulrich Mueller (ulm@vsnhd1.cern.ch) if you have questions.     ###
  4697. ### For questions about LA50 and LA75, please contact                    ###
  4698. ###       Ian MacPhedran (macphed@dvinci.USask.CA).                      ###
  4699. ### For questions about the LA70, please contact                         ###
  4700. ###       Bruce Lowekamp (lowekamp@csugrad.cs.vt.edu).                   ###
  4701. ### For questions about the LA75plus, please contact                     ###
  4702. ###       Andre' Beck (Andre_Beck@IRS.Inf.TU-Dresden.de).                ###
  4703.  
  4704. ln03_=gdevln03.$(OBJ)
  4705. ln03.dev: $(ln03_) page.dev
  4706.     $(SETPDEV) ln03 $(ln03_)
  4707.  
  4708. la50.dev: $(ln03_) page.dev
  4709.     $(SETPDEV) la50 $(ln03_)
  4710.  
  4711. la70.dev: $(ln03_) page.dev
  4712.     $(SETPDEV) la70 $(ln03_)
  4713.  
  4714. la75.dev: $(ln03_) page.dev
  4715.     $(SETPDEV) la75 $(ln03_)
  4716.  
  4717. la75plus.dev: $(ln03_) page.dev
  4718.     $(SETPDEV) la75plus $(ln03_)
  4719.  
  4720. gdevln03.$(OBJ): gdevln03.c $(PDEVH)
  4721.  
  4722. # LA70 driver with low-resolution text enhancement.
  4723.  
  4724. la70t_=gdevla7t.$(OBJ)
  4725. la70t.dev: $(la70t_) page.dev
  4726.     $(SETPDEV) la70t $(la70t_)
  4727.  
  4728. gdevla7t.$(OBJ): gdevla7t.c $(PDEVH)
  4729.  
  4730. ### -------------- The Epson LP-8000 laser printer device -------------- ###
  4731. ### Note: this driver was contributed by a user: please contact Oleg     ###
  4732. ###       Oleg Fat'yanov <faty1@rlem.titech.ac.jp> if you have questions.###
  4733.  
  4734. lp8000_=gdevlp8k.$(OBJ)
  4735. lp8000.dev: $(lp8000_) page.dev
  4736.     $(SETPDEV) lp8000 $(lp8000_)
  4737.  
  4738. gdevlp8k.$(OBJ): gdevlp8k.c $(PDEVH)
  4739.  
  4740. ### -------------- The C.Itoh M8510 printer device --------------------- ###
  4741. ### Note: this driver was contributed by a user: please contact Bob      ###
  4742. ###       Smith <bob@snuffy.penfield.ny.us> if you have questions.       ###
  4743.  
  4744. m8510_=gdev8510.$(OBJ)
  4745. m8510.dev: $(m8510_) page.dev
  4746.     $(SETPDEV) m8510 $(m8510_)
  4747.  
  4748. gdev8510.$(OBJ): gdev8510.c $(PDEVH)
  4749.  
  4750. ### -------------- 24pin Dot-matrix printer with 360DPI ---------------- ###
  4751. ### Note: this driver was contributed by users.  Please contact:         ###
  4752. ###    Andreas Schwab (schwab@ls5.informatik.uni-dortmund.de) for        ###
  4753. ###      questions about the NEC P6;                                     ###
  4754. ###    Christian Felsch (felsch@tu-harburg.d400.de) for                  ###
  4755. ###      questions about the Epson LQ850.                                ###
  4756.  
  4757. dm24_=gdevdm24.$(OBJ)
  4758. gdevdm24.$(OBJ): gdevdm24.c $(PDEVH)
  4759.  
  4760. necp6.dev: $(dm24_) page.dev
  4761.     $(SETPDEV) necp6 $(dm24_)
  4762.  
  4763. lq850.dev: $(dm24_) page.dev
  4764.     $(SETPDEV) lq850 $(dm24_)
  4765.  
  4766. ### ----------------- The Okidata MicroLine 182 device ----------------- ###
  4767. ### Note: this driver was contributed by a user: please contact          ###
  4768. ###       Maarten Koning (smeg@bnr.ca) if you have questions.            ###
  4769.  
  4770. oki182_=gdevo182.$(OBJ)
  4771. oki182.dev: $(oki182_) page.dev
  4772.     $(SETPDEV) oki182 $(oki182_)
  4773.  
  4774. gdevo182.$(OBJ): gdevo182.c $(PDEVH)
  4775.  
  4776. ### ------------- The Okidata IBM compatible printer device ------------ ###
  4777. ### Note: this driver was contributed by a user: please contact          ###
  4778. ###       Charles Mack (chasm@netcom.com) if you have questions.         ###
  4779.  
  4780. okiibm_=gdevokii.$(OBJ)
  4781. okiibm.dev: $(okiibm_) page.dev
  4782.     $(SETPDEV) okiibm $(okiibm_)
  4783.  
  4784. gdevokii.$(OBJ): gdevokii.c $(PDEVH)
  4785.  
  4786. ### ------------- The Ricoh 4081 laser printer device ------------------ ###
  4787. ### Note: this driver was contributed by users:                          ###
  4788. ###       please contact kdw@oasis.icl.co.uk if you have questions.      ###
  4789.  
  4790. r4081_=gdev4081.$(OBJ)
  4791. r4081.dev: $(r4081_) page.dev
  4792.     $(SETPDEV) r4081 $(r4081_)
  4793.  
  4794.  
  4795. gdev4081.$(OBJ): gdev4081.c $(PDEVH)
  4796.  
  4797. ### -------------------- Sony NWP533 printer device -------------------- ###
  4798. ### Note: this driver was contributed by a user: please contact Tero     ###
  4799. ###       Kivinen (kivinen@joker.cs.hut.fi) if you have questions.       ###
  4800.  
  4801. nwp533_=gdevn533.$(OBJ)
  4802. nwp533.dev: $(nwp533_) page.dev
  4803.     $(SETPDEV) nwp533 $(nwp533_)
  4804.  
  4805. gdevn533.$(OBJ): gdevn533.c $(PDEVH)
  4806.  
  4807. ### ------------------------- The SPARCprinter ------------------------- ###
  4808. ### Note: this driver was contributed by users: please contact Martin    ###
  4809. ###       Schulte (schulte@thp.uni-koeln.de) if you have questions.      ###
  4810. ###       He would also like to hear from anyone using the driver.       ###
  4811. ### Please consult the source code for additional documentation.         ###
  4812.  
  4813. sparc_=gdevsppr.$(OBJ)
  4814. sparc.dev: $(sparc_) page.dev
  4815.     $(SETPDEV) sparc $(sparc_)
  4816.  
  4817. gdevsppr.$(OBJ): gdevsppr.c $(PDEVH)
  4818.  
  4819. ### ----------------- The StarJet SJ48 device -------------------------- ###
  4820. ### Note: this driver was contributed by a user: if you have questions,  ###
  4821. ###                          .                                          ###
  4822. ###       please contact Mats Akerblom (f86ma@dd.chalmers.se).           ###
  4823.  
  4824. sj48_=gdevsj48.$(OBJ)
  4825. sj48.dev: $(sj48_) page.dev
  4826.     $(SETPDEV) sj48 $(sj48_)
  4827.  
  4828. gdevsj48.$(OBJ): gdevsj48.c $(PDEVH)
  4829.  
  4830. ### ----------------- Tektronix 4396d color printer -------------------- ###
  4831. ### Note: this driver was contributed by a user: please contact          ###
  4832. ###       Karl Hakimian (hakimian@haney.eecs.wsu.edu)                    ###
  4833. ###       if you have questions.                                         ###
  4834.  
  4835. t4693d_=gdev4693.$(OBJ)
  4836. t4693d2.dev: $(t4693d_) page.dev
  4837.     $(SETPDEV) t4693d2 $(t4693d_)
  4838.  
  4839. t4693d4.dev: $(t4693d_) page.dev
  4840.     $(SETPDEV) t4693d4 $(t4693d_)
  4841.  
  4842. t4693d8.dev: $(t4693d_) page.dev
  4843.     $(SETPDEV) t4693d8 $(t4693d_)
  4844.  
  4845. gdev4693.$(OBJ): gdev4693.c $(PDEVH)
  4846.  
  4847. ### -------------------- Tektronix ink-jet printers -------------------- ###
  4848. ### Note: this driver was contributed by a user: please contact          ###
  4849. ###       Karsten Spang (spang@nbivax.nbi.dk) if you have questions.     ###
  4850.  
  4851. tek4696_=gdevtknk.$(OBJ)
  4852. tek4696.dev: $(tek4696_) page.dev
  4853.     $(SETPDEV) tek4696 $(tek4696_)
  4854.  
  4855. gdevtknk.$(OBJ): gdevtknk.c $(PDEVH) $(malloc__h)
  4856.  
  4857. ### ----------------- The Xerox XES printer device --------------------- ###
  4858. ### Note: this driver was contributed by users: please contact           ###
  4859. ###       Peter Flass (flass@lbdrscs.bitnet) if you have questions.      ###
  4860.  
  4861. xes_=gdevxes.$(OBJ)
  4862. xes.dev: $(xes_) page.dev
  4863.     $(SETPDEV) xes $(xes_)
  4864.  
  4865. gdevxes.$(OBJ): gdevxes.c $(PDEVH)
  4866.  
  4867. ###### ------------------------- Fax devices ------------------------- ######
  4868.  
  4869. ### --------------- Generic PostScript system compatible fax ------------ ###
  4870.  
  4871. # This code doesn't work yet.  Don't even think about using it.
  4872.  
  4873. PSFAX=gdevpfax.$(OBJ)
  4874.  
  4875. psfax_=$(PSFAX)
  4876. psfax.dev: $(psfax_) page.dev
  4877.     $(SETPDEV) psfax $(psfax_)
  4878.     $(ADDMOD) psfax -iodev Fax
  4879.  
  4880. gdevpfax.$(OBJ): gdevpfax.c $(PDEVH) $(gsparam_h) $(gxiodev_h)
  4881.  
  4882. ### ------------------------- The DigiFAX device ------------------------ ###
  4883. ###    This driver outputs images in a format suitable for use with       ###
  4884. ###    DigiBoard, Inc.'s DigiFAX software.  Use -sDEVICE=dfaxhigh for     ###
  4885. ###    high resolution output, -sDEVICE=dfaxlow for normal output.        ###
  4886. ### Note: this driver was contributed by a user: please contact           ###
  4887. ###       Rick Richardson (rick@digibd.com) if you have questions.        ###
  4888.  
  4889. dfax_=gdevdfax.$(OBJ) gdevtfax.$(OBJ)
  4890.  
  4891. dfaxlow.dev: $(dfax_) page.dev
  4892.     $(SETPDEV) dfaxlow $(dfax_)
  4893.     $(ADDMOD) dfaxlow -include cfe
  4894.  
  4895. dfaxhigh.dev: $(dfax_) page.dev
  4896.     $(SETPDEV) dfaxhigh $(dfax_)
  4897.     $(ADDMOD) dfaxhigh -include cfe
  4898.  
  4899. gdevdfax.$(OBJ): gdevdfax.c $(PDEVH) $(scfx_h) $(strimpl_h)
  4900.  
  4901. ### --------------See under TIFF below for fax-format TIFF -------------- ###
  4902.  
  4903. ###### ------------------- High-level file formats ------------------- ######
  4904.  
  4905. # Support for PostScript and PDF
  4906.  
  4907. gdevpsdf_h=gdevpsdf.h $(gdevvec_h) $(strimpl_h)
  4908. gdevpstr_h=gdevpstr.h
  4909.  
  4910. gdevpsdf.$(OBJ): gdevpsdf.c $(stdio__h) $(string__h)\
  4911.  $(gserror_h) $(gserrors_h) $(gsmemory_h) $(gsparam_h) $(gstypes_h)\
  4912.  $(gxdevice_h)\
  4913.  $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)\
  4914.  $(gdevpsdf_h) $(gdevpstr_h)
  4915.  
  4916. gdevpstr.$(OBJ): gdevpstr.c $(math__h) $(stdio__h) $(string__h)\
  4917.  $(gdevpstr_h) $(stream_h)
  4918.  
  4919. # PostScript and EPS writers
  4920.  
  4921. pswrite1_=gdevps.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4922. pswrite2_=scantab.$(OBJ) sfilter2.$(OBJ)
  4923. pswrite_=$(pswrite1_) $(pswrite2_)
  4924. epswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4925.     $(SETDEV) epswrite $(pswrite1_)
  4926.     $(ADDMOD) epswrite $(pswrite2_)
  4927.     $(ADDMOD) epswrite -include vector
  4928.  
  4929. pswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4930.     $(SETDEV) pswrite $(pswrite1_)
  4931.     $(ADDMOD) pswrite $(pswrite2_)
  4932.     $(ADDMOD) pswrite -include vector
  4933.  
  4934. gdevps.$(OBJ): gdevps.c $(GDEV) $(math__h) $(time__h)\
  4935.  $(gscdefs_h) $(gscspace_h) $(gsparam_h) $(gsiparam_h) $(gsmatrix_h)\
  4936.  $(gxdcolor_h)\
  4937.  $(sa85x_h) $(strimpl_h)\
  4938.  $(gdevpsdf_h) $(gdevpstr_h)
  4939.  
  4940. # PDF writer
  4941. # Note that gs_pdfwr.ps will only actually be loaded if the configuration
  4942. # includes a PostScript interpreter.
  4943.  
  4944. pdfwrite1_=gdevpdf.$(OBJ) gdevpdfi.$(OBJ) gdevpdfm.$(OBJ)
  4945. pdfwrite2_=gdevpdfp.$(OBJ) gdevpdft.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4946. pdfwrite3_=gsflip.$(OBJ) scantab.$(OBJ) sfilter2.$(OBJ) sstring.$(OBJ)
  4947. pdfwrite_=$(pdfwrite1_) $(pdfwrite2_) $(pdfwrite3_)
  4948. pdfwrite.dev: $(ECHOGS_XE) $(pdfwrite_) \
  4949.   cmyklib.dev cfe.dev dcte.dev lzwe.dev rle.dev vector.dev
  4950.     $(SETDEV) pdfwrite $(pdfwrite1_)
  4951.     $(ADDMOD) pdfwrite $(pdfwrite2_)
  4952.     $(ADDMOD) pdfwrite $(pdfwrite3_)
  4953.     $(ADDMOD) pdfwrite -ps gs_pdfwr
  4954.     $(ADDMOD) pdfwrite -include cmyklib cfe dcte lzwe rle vector
  4955.  
  4956. gdevpdfx_h=gdevpdfx.h $(gsparam_h) $(gxdevice_h) $(gxline_h) $(stream_h)\
  4957.  $(gdevpsdf_h) $(gdevpstr_h)
  4958.  
  4959. gdevpdf.$(OBJ): gdevpdf.c $(math__h) $(string__h) $(time__h) $(gp_h) \
  4960.   $(gdevpdfx_h) $(gscdefs_h) $(gserrors_h) \
  4961.   $(gx_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gxpaint_h) \
  4962.   $(gzcpath_h) $(gzpath_h) $(scfx_h) $(strimpl_h)
  4963.  
  4964. gdevpdfi.$(OBJ): gdevpdfi.c $(memory__h) $(gx_h) \
  4965.   $(gdevpdfx_h) $(gserrors_h) $(gsflip_h) $(gxcspace_h) $(gxistate_h) \
  4966.   $(sa85x_h) $(scfx_h) $(srlx_h) $(strimpl_h)
  4967.  
  4968. gdevpdfm.$(OBJ): gdevpdfm.c $(memory__h) $(string__h) $(gx_h) \
  4969.   $(gdevpdfx_h) $(gserrors_h) $(gsutil_h) $(scanchar_h)
  4970.  
  4971. gdevpdfp.$(OBJ): gdevpdfp.c $(gx_h)\
  4972.  $(gdevpdfx_h) $(gserrors_h)
  4973.  
  4974. gdevpdft.$(OBJ): gdevpdft.c $(math__h) $(string__h) $(gx_h)\
  4975.  $(gdevpdfx_h) $(gserrors_h) $(gsutil_h)\
  4976.  $(sstring_h) $(strimpl_h)
  4977.  
  4978. # High-level PCL XL writer
  4979.  
  4980. pxl_=gdevpx.$(OBJ)
  4981. pxlmono.dev: $(pxl_) $(GDEV) vector.dev
  4982.     $(SETDEV) pxlmono $(pxl_)
  4983.     $(ADDMOD) pxlmono -include vector
  4984.  
  4985. pxlcolor.dev: $(pxl_) $(GDEV) vector.dev
  4986.     $(SETDEV) pxlcolor $(pxl_)
  4987.     $(ADDMOD) pxlcolor -include vector
  4988.  
  4989. gdevpx.$(OBJ): gdevpx.c $(math__h) $(memory__h) $(string__h)\
  4990.  $(gx_h) $(gsccolor_h) $(gsdcolor_h) $(gserrors_h)\
  4991.  $(gxcspace_h) $(gxdevice_h) $(gxpath_h)\
  4992.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h) $(gdevvec_h)\
  4993.  $(srlx_h) $(strimpl_h)
  4994.  
  4995. ###### --------------------- Raster file formats --------------------- ######
  4996.  
  4997. ### --------------------- The "plain bits" devices ---------------------- ###
  4998.  
  4999. bit_=gdevbit.$(OBJ)
  5000.  
  5001. bit.dev: $(bit_) page.dev
  5002.     $(SETPDEV) bit $(bit_)
  5003.  
  5004. bitrgb.dev: $(bit_) page.dev
  5005.     $(SETPDEV) bitrgb $(bit_)
  5006.  
  5007. bitcmyk.dev: $(bit_) page.dev
  5008.     $(SETPDEV) bitcmyk $(bit_)
  5009.  
  5010. gdevbit.$(OBJ): gdevbit.c $(PDEVH) $(gsparam_h) $(gxlum_h)
  5011.  
  5012. ### ------------------------- .BMP file formats ------------------------- ###
  5013.  
  5014. bmp_=gdevbmp.$(OBJ) gdevpccm.$(OBJ)
  5015.  
  5016. gdevbmp.$(OBJ): gdevbmp.c $(PDEVH) $(gdevpccm_h)
  5017.  
  5018. bmpmono.dev: $(bmp_) page.dev
  5019.     $(SETPDEV) bmpmono $(bmp_)
  5020.  
  5021. bmp16.dev: $(bmp_) page.dev
  5022.     $(SETPDEV) bmp16 $(bmp_)
  5023.  
  5024. bmp256.dev: $(bmp_) page.dev
  5025.     $(SETPDEV) bmp256 $(bmp_)
  5026.  
  5027. bmp16m.dev: $(bmp_) page.dev
  5028.     $(SETPDEV) bmp16m $(bmp_)
  5029.  
  5030. ### -------------------------- CGM file format ------------------------- ###
  5031. ### This driver is under development.  Use at your own risk.             ###
  5032. ### The output is very low-level, consisting only of rectangles and      ###
  5033. ### cell arrays.                                                         ###
  5034.  
  5035. cgm_=gdevcgm.$(OBJ) gdevcgml.$(OBJ)
  5036.  
  5037. gdevcgml_h=gdevcgml.h
  5038. gdevcgmx_h=gdevcgmx.h $(gdevcgml_h)
  5039.  
  5040. gdevcgm.$(OBJ): gdevcgm.c $(GDEV) $(memory__h)\
  5041.  $(gsparam_h) $(gdevpccm_h) $(gdevcgml_h)
  5042.  
  5043. gdevcgml.$(OBJ): gdevcgml.c $(memory__h) $(stdio__h)\
  5044.  $(gdevcgmx_h)
  5045.  
  5046. cgmmono.dev: $(cgm_)
  5047.     $(SETDEV) cgmmono $(cgm_)
  5048.  
  5049. cgm8.dev: $(cgm_)
  5050.     $(SETDEV) cgm8 $(cgm_)
  5051.  
  5052. cgm24.dev: $(cgm_)
  5053.     $(SETDEV) cgm24 $(cgm_)
  5054.  
  5055. ### -------------------- The CIF file format for VLSI ------------------ ###
  5056. ### Note: this driver was contributed by a user: please contact          ###
  5057. ###       Frederic Petrot (petrot@masi.ibp.fr) if you have questions.    ###
  5058.  
  5059. cif_=gdevcif.$(OBJ)
  5060. cif.dev: $(cif_) page.dev
  5061.     $(SETPDEV) cif $(cif_)
  5062.  
  5063. gdevcif.$(OBJ): gdevcif.c $(PDEVH)
  5064.  
  5065. ### ------------------------- JPEG file format ------------------------- ###
  5066.  
  5067. jpeg_=gdevjpeg.$(OBJ)
  5068.  
  5069. # RGB output
  5070. jpeg.dev: $(jpeg_) sdcte.dev page.dev
  5071.     $(SETPDEV) jpeg $(jpeg_)
  5072.     $(ADDMOD) jpeg -include sdcte
  5073.  
  5074. # Gray output
  5075. jpeggray.dev: $(jpeg_) sdcte.dev page.dev
  5076.     $(SETPDEV) jpeggray $(jpeg_)
  5077.     $(ADDMOD) jpeggray -include sdcte
  5078.  
  5079. gdevjpeg.$(OBJ): gdevjpeg.c $(stdio__h) $(PDEVH)\
  5080.  $(sdct_h) $(sjpeg_h) $(stream_h) $(strimpl_h) jpeglib.h
  5081.  
  5082. ### ------------------------- MIFF file format ------------------------- ###
  5083. ### Right now we support only 24-bit direct color, but we might add more ###
  5084. ### formats in the future.                                               ###
  5085.  
  5086. miff_=gdevmiff.$(OBJ)
  5087.  
  5088. miff24.dev: $(miff_) page.dev
  5089.     $(SETPDEV) miff24 $(miff_)
  5090.  
  5091. gdevmiff.$(OBJ): gdevmiff.c $(PDEVH)
  5092.  
  5093. ### --------------------------- MGR devices ---------------------------- ###
  5094. ### Note: these drivers were contributed by a user: please contact       ###
  5095. ###       Carsten Emde (carsten@ce.pr.net.ch) if you have questions.     ###
  5096.  
  5097. MGR=gdevmgr.$(OBJ) gdevpccm.$(OBJ)
  5098.  
  5099. gdevmgr.$(OBJ): gdevmgr.c $(PDEVH) $(gdevpccm_h) gdevmgr.h
  5100.  
  5101. mgrmono.dev: $(MGR) page.dev
  5102.     $(SETPDEV) mgrmono $(MGR)
  5103.  
  5104. mgrgray2.dev: $(MGR) page.dev
  5105.     $(SETPDEV) mgrgray2 $(MGR)
  5106.  
  5107. mgrgray4.dev: $(MGR) page.dev
  5108.     $(SETPDEV) mgrgray4 $(MGR)
  5109.  
  5110. mgrgray8.dev: $(MGR) page.dev
  5111.     $(SETPDEV) mgrgray8 $(MGR)
  5112.  
  5113. mgr4.dev: $(MGR) page.dev
  5114.     $(SETPDEV) mgr4 $(MGR)
  5115.  
  5116. mgr8.dev: $(MGR) page.dev
  5117.     $(SETPDEV) mgr8 $(MGR)
  5118.  
  5119. ### ------------------------- PCX file formats ------------------------- ###
  5120.  
  5121. pcx_=gdevpcx.$(OBJ) gdevpccm.$(OBJ)
  5122.  
  5123. gdevpcx.$(OBJ): gdevpcx.c $(PDEVH) $(gdevpccm_h) $(gxlum_h)
  5124.  
  5125. pcxmono.dev: $(pcx_) page.dev
  5126.     $(SETPDEV) pcxmono $(pcx_)
  5127.  
  5128. pcxgray.dev: $(pcx_) page.dev
  5129.     $(SETPDEV) pcxgray $(pcx_)
  5130.  
  5131. pcx16.dev: $(pcx_) page.dev
  5132.     $(SETPDEV) pcx16 $(pcx_)
  5133.  
  5134. pcx256.dev: $(pcx_) page.dev
  5135.     $(SETPDEV) pcx256 $(pcx_)
  5136.  
  5137. pcx24b.dev: $(pcx_) page.dev
  5138.     $(SETPDEV) pcx24b $(pcx_)
  5139.  
  5140. pcxcmyk.dev: $(pcx_) page.dev
  5141.     $(SETPDEV) pcxcmyk $(pcx_)
  5142.  
  5143. # The 2-up PCX device is here only as an example, and for testing.
  5144. pcx2up.dev: $(LIB_MAK) $(ECHOGS_XE) gdevp2up.$(OBJ) page.dev pcx256.dev
  5145.     $(SETPDEV) pcx2up gdevp2up.$(OBJ)
  5146.     $(ADDMOD) pcx2up -include pcx256
  5147.  
  5148. gdevp2up.$(OBJ): gdevp2up.c $(AK)\
  5149.  $(gdevpccm_h) $(gdevprn_h) $(gxclpage_h)
  5150.  
  5151. ### ------------------- Portable Bitmap file formats ------------------- ###
  5152. ### For more information, see the pbm(5), pgm(5), and ppm(5) man pages.  ###
  5153.  
  5154. pxm_=gdevpbm.$(OBJ)
  5155.  
  5156. gdevpbm.$(OBJ): gdevpbm.c $(PDEVH) $(gscdefs_h) $(gxlum_h)
  5157.  
  5158. ### Portable Bitmap (PBM, plain or raw format, magic numbers "P1" or "P4")
  5159.  
  5160. pbm.dev: $(pxm_) page.dev
  5161.     $(SETPDEV) pbm $(pxm_)
  5162.  
  5163. pbmraw.dev: $(pxm_) page.dev
  5164.     $(SETPDEV) pbmraw $(pxm_)
  5165.  
  5166. ### Portable Graymap (PGM, plain or raw format, magic numbers "P2" or "P5")
  5167.  
  5168. pgm.dev: $(pxm_) page.dev
  5169.     $(SETPDEV) pgm $(pxm_)
  5170.  
  5171. pgmraw.dev: $(pxm_) page.dev
  5172.     $(SETPDEV) pgmraw $(pxm_)
  5173.  
  5174. # PGM with automatic optimization to PBM if this is possible.
  5175.  
  5176. pgnm.dev: $(pxm_) page.dev
  5177.     $(SETPDEV) pgnm $(pxm_)
  5178.  
  5179. pgnmraw.dev: $(pxm_) page.dev
  5180.     $(SETPDEV) pgnmraw $(pxm_)
  5181.  
  5182. ### Portable Pixmap (PPM, plain or raw format, magic numbers "P3" or "P6")
  5183.  
  5184. ppm.dev: $(pxm_) page.dev
  5185.     $(SETPDEV) ppm $(pxm_)
  5186.  
  5187. ppmraw.dev: $(pxm_) page.dev
  5188.     $(SETPDEV) ppmraw $(pxm_)
  5189.  
  5190. # PPM with automatic optimization to PGM or PBM if possible.
  5191.  
  5192. pnm.dev: $(pxm_) page.dev
  5193.     $(SETPDEV) pnm $(pxm_)
  5194.  
  5195. pnmraw.dev: $(pxm_) page.dev
  5196.     $(SETPDEV) pnmraw $(pxm_)
  5197.  
  5198. ### Portable inKmap (CMYK internally, converted to PPM=RGB at output time)
  5199.  
  5200. pkm.dev: $(pxm_) page.dev
  5201.     $(SETPDEV) pkm $(pxm_)
  5202.  
  5203. pkmraw.dev: $(pxm_) page.dev
  5204.     $(SETPDEV) pkmraw $(pxm_)
  5205.  
  5206. ### --------------- Portable Network Graphics file format --------------- ###
  5207. ### Requires libpng 0.81 and zlib 0.95 (or more recent versions).         ###
  5208. ### See libpng.mak and zlib.mak for more details.                         ###
  5209.  
  5210. png_=gdevpng.$(OBJ) gdevpccm.$(OBJ)
  5211.  
  5212. gdevpng.$(OBJ): gdevpng.c $(gdevprn_h) $(gdevpccm_h) $(gscdefs_h) $(PSRC)png.h
  5213.     $(CCCP) gdevpng.c
  5214.  
  5215. pngmono.dev: libpng.dev $(png_) page.dev
  5216.     $(SETPDEV) pngmono  $(png_)
  5217.     $(ADDMOD) pngmono  -include libpng
  5218.  
  5219. pnggray.dev: libpng.dev $(png_) page.dev
  5220.     $(SETPDEV) pnggray  $(png_)
  5221.     $(ADDMOD) pnggray  -include libpng
  5222.  
  5223. png16.dev: libpng.dev $(png_) page.dev
  5224.     $(SETPDEV) png16  $(png_)
  5225.     $(ADDMOD) png16  -include libpng
  5226.  
  5227. png256.dev: libpng.dev $(png_) page.dev
  5228.     $(SETPDEV) png256  $(png_)
  5229.     $(ADDMOD) png256  -include libpng
  5230.  
  5231. png16m.dev: libpng.dev $(png_) page.dev
  5232.     $(SETPDEV) png16m  $(png_)
  5233.     $(ADDMOD) png16m  -include libpng
  5234.  
  5235. ### ---------------------- PostScript image format ---------------------- ###
  5236. ### These devices make it possible to print Level 2 files on a Level 1    ###
  5237. ###   printer, by converting them to a bitmap in PostScript format.       ###
  5238.  
  5239. ps_=gdevpsim.$(OBJ)
  5240.  
  5241. gdevpsim.$(OBJ): gdevpsim.c $(PDEVH)
  5242.  
  5243. psmono.dev: $(ps_) page.dev
  5244.     $(SETPDEV) psmono $(ps_)
  5245.  
  5246. psgray.dev: $(ps_) page.dev
  5247.     $(SETPDEV) psgray $(ps_)
  5248.  
  5249. # Someday there will be RGB and CMYK variants....
  5250.  
  5251. ### -------------------------- SGI RGB pixmaps -------------------------- ###
  5252.  
  5253. sgirgb_=gdevsgi.$(OBJ)
  5254.  
  5255. gdevsgi.$(OBJ): gdevsgi.c $(PDEVH) gdevsgi.h
  5256.  
  5257. sgirgb.dev: $(sgirgb_) page.dev
  5258.     $(SETPDEV) sgirgb $(sgirgb_)
  5259.  
  5260. ### -------------------- Plain or TIFF fax encoding --------------------- ###
  5261. ###    Use -sDEVICE=tiffg3 or tiffg4 and                  ###
  5262. ###      -r204x98 for low resolution output, or              ###
  5263. ###      -r204x196 for high resolution output                  ###
  5264. ###    These drivers recognize 3 page sizes: letter, A4, and B4.      ###
  5265.  
  5266. gdevtifs_h=gdevtifs.h
  5267.  
  5268. tfax_=gdevtfax.$(OBJ)
  5269. tfax.dev: $(tfax_) cfe.dev lzwe.dev rle.dev tiffs.dev
  5270.     $(SETMOD) tfax $(tfax_)
  5271.     $(ADDMOD) tfax -include cfe lzwe rle tiffs
  5272.  
  5273. gdevtfax.$(OBJ): gdevtfax.c $(PDEVH)\
  5274.  $(gdevtifs_h) $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)
  5275.  
  5276. ### Plain G3/G4 fax with no header
  5277.  
  5278. faxg3.dev: tfax.dev
  5279.     $(SETDEV) faxg3 -include tfax
  5280.  
  5281. faxg32d.dev: tfax.dev
  5282.     $(SETDEV) faxg32d -include tfax
  5283.  
  5284. faxg4.dev: tfax.dev
  5285.     $(SETDEV) faxg4 -include tfax
  5286.  
  5287. ### ---------------------------- TIFF formats --------------------------- ###
  5288.  
  5289. tiffs_=gdevtifs.$(OBJ)
  5290. tiffs.dev: $(tiffs_) page.dev
  5291.     $(SETMOD) tiffs $(tiffs_)
  5292.     $(ADDMOD) tiffs -include page
  5293.  
  5294. gdevtifs.$(OBJ): gdevtifs.c $(PDEVH) $(stdio__h) $(time__h) \
  5295.  $(gdevtifs_h) $(gscdefs_h) $(gstypes_h)
  5296.  
  5297. # Black & white, G3/G4 fax
  5298.  
  5299. tiffcrle.dev: tfax.dev
  5300.     $(SETDEV) tiffcrle -include tfax
  5301.  
  5302. tiffg3.dev: tfax.dev
  5303.     $(SETDEV) tiffg3 -include tfax
  5304.  
  5305. tiffg32d.dev: tfax.dev
  5306.     $(SETDEV) tiffg32d -include tfax
  5307.  
  5308. tiffg4.dev: tfax.dev
  5309.     $(SETDEV) tiffg4 -include tfax
  5310.  
  5311. # Black & white, LZW compression
  5312.  
  5313. tifflzw.dev: tfax.dev
  5314.     $(SETDEV) tifflzw -include tfax
  5315.  
  5316. # Black & white, PackBits compression
  5317.  
  5318. tiffpack.dev: tfax.dev
  5319.     $(SETDEV) tiffpack -include tfax
  5320.  
  5321. # RGB, no compression
  5322.  
  5323. tiffrgb_=gdevtfnx.$(OBJ)
  5324.  
  5325. tiff12nc.dev: $(tiffrgb_) tiffs.dev
  5326.     $(SETPDEV) tiff12nc $(tiffrgb_)
  5327.     $(ADDMOD) tiff12nc -include tiffs
  5328.  
  5329. tiff24nc.dev: $(tiffrgb_) tiffs.dev
  5330.     $(SETPDEV) tiff24nc $(tiffrgb_)
  5331.     $(ADDMOD) tiff24nc -include tiffs
  5332.  
  5333. gdevtfnx.$(OBJ): gdevtfnx.c $(PDEVH) $(gdevtifs_h)
  5334. #    Copyright (C) 1994, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  5335. # This file is part of Aladdin Ghostscript.
  5336. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5337. # or distributor accepts any responsibility for the consequences of using it,
  5338. # or for whether it serves any particular purpose or works at all, unless he
  5339. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5340. # License (the "License") for full details.
  5341. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5342. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5343. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5344. # under certain conditions described in the License.  Among other things, the
  5345. # License requires that the copyright notice and this notice be preserved on
  5346. # all copies.
  5347.  
  5348. # Partial makefile, common to all Desqview/X configurations.
  5349.  
  5350. # This is the last part of the makefile for Desqview/X configurations.
  5351. # Since Unix make doesn't have an 'include' facility, we concatenate
  5352. # the various parts of the makefile together by brute force (in tar_cat).
  5353.  
  5354. # The following prevents GNU make from constructing argument lists that
  5355. # include all environment variables, which can easily be longer than
  5356. # brain-damaged system V allows.
  5357.  
  5358. .NOEXPORT:
  5359.  
  5360. # -------------------------------- Library -------------------------------- #
  5361.  
  5362. ## The Desqview/X platform
  5363.  
  5364. dvx__=gp_nofb.$(OBJ) gp_dvx.$(OBJ) gp_unifs.$(OBJ) gp_dosfs.$(OBJ)
  5365. dvx_.dev: $(dvx__)
  5366.     $(SETMOD) dvx_ $(dvx__)
  5367.  
  5368. gp_dvx.$(OBJ): gp_dvx.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5369.   $(time__h) $(dos__h)
  5370.     $(CCC) -D__DVX__ gp_dvx.c
  5371.  
  5372. # -------------------------- Auxiliary programs --------------------------- #
  5373.  
  5374. $(ANSI2KNR_XE): ansi2knr.c $(stdio__h) $(string__h) $(malloc__h)
  5375.     $(CC) -o ansi2knr $(CFLAGS) ansi2knr.c
  5376.  
  5377. $(ECHOGS_XE): echogs.c
  5378.     $(CC) -o echogs $(CFLAGS) echogs.c
  5379.     strip echogs
  5380.     coff2exe echogs
  5381.     del echogs
  5382.  
  5383. $(GENARCH_XE): genarch.c $(stdpre_h)
  5384.     $(CC) -o genarch genarch.c
  5385.     strip genarch
  5386.     coff2exe genarch
  5387.     del genarch
  5388.  
  5389. $(GENCONF_XE): genconf.c $(stdpre_h)
  5390.     $(CC) -o genconf genconf.c
  5391.     strip genconf
  5392.     coff2exe genconf
  5393.     del genconf
  5394.  
  5395. $(GENINIT_XE): geninit.c $(stdio__h) $(string__h)
  5396.     $(CC) -o geninit geninit.c
  5397.     strip geninit
  5398.     coff2exe geninit
  5399.     del geninit
  5400.  
  5401. # Construct gconfig_.h to reflect the environment.
  5402. INCLUDE=/djgpp/include
  5403. gconfig_.h: dvx-tail.mak $(ECHOGS_XE)
  5404.     echogs -w gconfig_.h -x 2f2a -s This file was generated automatically. -s -x 2a2f
  5405.     echogs -a gconfig_.h -x 23 define HAVE_SYS_TIME_H
  5406.     echogs -a gconfig_.h -x 23 define HAVE_DIRENT_H
  5407.  
  5408. # ----------------------------- Main program ------------------------------ #
  5409.  
  5410. BEGINFILES=
  5411. CCBEGIN=$(CCC) *.c
  5412.  
  5413. # Interpreter main program
  5414.  
  5415. $(GS_XE): ld.tr gs.$(OBJ) $(INT_ALL) $(LIB_ALL) $(DEVS_ALL)
  5416.     $(CP_) ld.tr _temp_
  5417.     echo $(EXTRALIBS) -lm >>_temp_
  5418.     $(CC) $(LDFLAGS) $(XLIBDIRS) -o $(GS) gs.$(OBJ) @_temp_
  5419.     strip $(GS)
  5420.     coff2exe $(GS)  
  5421.     del $(GS)  
  5422. #    Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5423. # This file is part of Aladdin Ghostscript.
  5424. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5425. # or distributor accepts any responsibility for the consequences of using it,
  5426. # or for whether it serves any particular purpose or works at all, unless he
  5427. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5428. # License (the "License") for full details.
  5429. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5430. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5431. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5432. # under certain conditions described in the License.  Among other things, the
  5433. # License requires that the copyright notice and this notice be preserved on
  5434. # all copies.
  5435.  
  5436. # Partial makefile common to all Unix and Desqview/X configurations.
  5437.  
  5438. # This is the very last part of the makefile for these configurations.
  5439. # Since Unix make doesn't have an 'include' facility, we concatenate
  5440. # the various parts of the makefile together by brute force (in tar_cat).
  5441.  
  5442. # Define a rule for building profiling configurations.
  5443. pg:
  5444.     make GENOPT='' CFLAGS='-pg -O $(GCFLAGS) $(XCFLAGS)' LDFLAGS='$(XLDFLAGS) -pg' XLIBS='Xt SM ICE Xext X11' CCLEAF='$(CCC)'
  5445.  
  5446. # Define a rule for building debugging configurations.
  5447. debug:
  5448.     make GENOPT='-DDEBUG' CFLAGS='-g -O $(GCFLAGS) $(XCFLAGS)'
  5449.  
  5450. # The rule for gconfigv.h is here because it is shared between Unix and
  5451. # DV/X environments.
  5452. gconfigv.h: unix-end.mak $(MAKEFILE) $(ECHOGS_XE)
  5453.     $(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
  5454.     $(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
  5455.     $(EXP)echogs -a gconfigv.h -x 23 define EXTEND_NAMES 0$(EXTEND_NAMES)
  5456.  
  5457. # The following rules are equivalent to what tar_cat does.
  5458. # The rm -f is so that we don't overwrite a file that `make'
  5459. # may currently be reading from.
  5460. GENERIC_MAK_LIST=$(GS_MAK) $(LIB_MAK) $(INT_MAK) $(JPEG_MAK) $(LIBPNG_MAK) $(ZLIB_MAK) $(DEVS_MAK)
  5461. UNIX_MAK_LIST=dvx-gcc.mak unixansi.mak unix-cc.mak unix-gcc.mak
  5462.  
  5463. unix.mak: $(UNIX_MAK_LIST)
  5464.  
  5465. DVX_GCC_MAK=$(VERSION_MAK) dgc-head.mak dvx-head.mak $(GENERIC_MAK_LIST) dvx-tail.mak unix-end.mak
  5466. dvx-gcc.mak: $(DVX_GCC_MAK)
  5467.     rm -f dvx-gcc.mak
  5468.     $(CAT) $(DVX_GCC_MAK) >dvx-gcc.mak
  5469.  
  5470. UNIXANSI_MAK=$(VERSION_MAK) ansihead.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5471. unixansi.mak: $(UNIXANSI_MAK)
  5472.     rm -f unixansi.mak
  5473.     $(CAT) $(UNIXANSI_MAK) >unixansi.mak
  5474.  
  5475. UNIX_CC_MAK=$(VERSION_MAK) cc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5476. unix-cc.mak: $(UNIX_CC_MAK)
  5477.     rm -f unix-cc.mak
  5478.     $(CAT) $(UNIX_CC_MAK) >unix-cc.mak
  5479.  
  5480. UNIX_GCC_MAK=$(VERSION_MAK) gcc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5481. unix-gcc.mak: $(UNIX_GCC_MAK)
  5482.     rm -f unix-gcc.mak
  5483.     $(CAT) $(UNIX_GCC_MAK) >unix-gcc.mak
  5484.  
  5485. # Installation
  5486.  
  5487. TAGS:
  5488.     etags -t *.c *.h
  5489.  
  5490. install: install-exec install-scripts install-data
  5491.  
  5492. # The sh -c in the rules below is required because Ultrix's implementation
  5493. # of sh -e terminates execution of a command if any error occurs, even if
  5494. # the command traps the error with ||.
  5495.  
  5496. install-exec: $(GS)
  5497.     -mkdir $(bindir)
  5498.     $(INSTALL_PROGRAM) $(GS) $(bindir)/$(GS)
  5499.  
  5500. install-scripts: gsnd
  5501.     -mkdir $(scriptdir)
  5502.     sh -c 'for f in gsbj gsdj gsdj500 gslj gslp gsnd bdftops font2c \
  5503. pdf2dsc pdf2ps printafm ps2ascii ps2epsi ps2pdf wftopfa ;\
  5504.     do if ( test -f $$f ); then $(INSTALL_PROGRAM) $$f $(scriptdir)/$$f; fi;\
  5505.     done'
  5506.  
  5507. MAN1_PAGES=gs pdf2dsc pdf2ps ps2ascii ps2epsi ps2pdf
  5508. install-data: gs.1
  5509.     -mkdir $(mandir)
  5510.     -mkdir $(man1dir)
  5511.     sh -c 'for f in $(MAN1_PAGES) ;\
  5512.     do if ( test -f $$f.1 ); then $(INSTALL_DATA) $$f.1 $(man1dir)/$$f.$(man1ext); fi;\
  5513.     done'
  5514.     -mkdir $(datadir)
  5515.     -mkdir $(gsdir)
  5516.     -mkdir $(gsdatadir)
  5517.     sh -c 'for f in Fontmap \
  5518. cbjc600.ppd cbjc800.ppd *.upp \
  5519. gs_init.ps gs_btokn.ps gs_ccfnt.ps gs_cff.ps gs_cidfn.ps gs_cmap.ps \
  5520. gs_diskf.ps gs_dpnxt.ps gs_dps.ps gs_dps1.ps gs_dps2.ps gs_epsf.ps \
  5521. gs_fonts.ps gs_kanji.ps gs_lev2.ps \
  5522. gs_pfile.ps gs_res.ps gs_setpd.ps gs_statd.ps \
  5523. gs_ttf.ps gs_typ42.ps gs_type1.ps \
  5524. gs_dbt_e.ps gs_iso_e.ps gs_ksb_e.ps gs_std_e.ps gs_sym_e.ps \
  5525. acctest.ps align.ps bdftops.ps caption.ps decrypt.ps docie.ps \
  5526. font2c.ps gslp.ps impath.ps landscap.ps level1.ps lines.ps \
  5527. markhint.ps markpath.ps \
  5528. packfile.ps pcharstr.ps pfbtogs.ps ppath.ps prfont.ps printafm.ps \
  5529. ps2ai.ps ps2ascii.ps ps2epsi.ps ps2image.ps \
  5530. quit.ps showchar.ps showpage.ps stcinfo.ps stcolor.ps \
  5531. traceimg.ps traceop.ps type1enc.ps type1ops.ps uninfo.ps unprot.ps \
  5532. viewcmyk.ps viewgif.ps viewjpeg.ps viewpcx.ps viewpbm.ps viewps2a.ps \
  5533. winmaps.ps wftopfa.ps wrfont.ps zeroline.ps \
  5534. gs_l2img.ps gs_pdf.ps \
  5535. pdf2dsc.ps \
  5536. pdf_base.ps pdf_draw.ps pdf_font.ps pdf_main.ps pdf_sec.ps pdf_2ps.ps \
  5537. gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps \
  5538. gs_pdfwr.ps ;\
  5539.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(gsdatadir)/$$f; fi;\
  5540.     done'
  5541.     -mkdir $(docdir)
  5542.     sh -c 'for f in COPYING NEWS PUBLIC README \
  5543. bug-form.txt c-style.txt current.txt devices.txt drivers.txt fonts.txt \
  5544. helpers.txt hershey.txt history1.txt history2.txt history3.txt humor.txt \
  5545. install.txt language.txt lib.txt make.txt new-user.txt \
  5546. ps2epsi.txt ps2pdf.txt psfiles.txt public.txt \
  5547. unix-lpr.txt use.txt xfonts.txt ;\
  5548.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(docdir)/$$f; fi;\
  5549.     done'
  5550.     -mkdir $(exdir)
  5551.     for f in alphabet.ps chess.ps cheq.ps colorcir.ps escher.ps golfer.ps \
  5552. grayalph.ps snowflak.ps tiger.ps waterfal.ps \
  5553. ridt91.eps ;\
  5554.     do $(INSTALL_DATA) $$f $(exdir)/$$f ;\
  5555.     done
  5556.